using System;
using System.Web.Mvc;
public class Program
{
public static void Main()
var form = new FormCollection() {
{"WeekList", "1"},
{"PracticeList", "2"}
};
var weekList = form.Get("WeekList");
Console.WriteLine(weekList);
}