mvc 从后台得到前台元素值的方法

1、 Request .QueryString[""] :是取得get方法传过来的值

2、Request.Form[“txt”] :取得通过post方法传过来的值

3、Request.Params[“txt”] :get,post方法传过来的值都可以取到

4、Request.Params.GetValues("txt_votes"); 取到某name值,以数组形式。

5、以mvc形式传递过来的参数

Request.RequestContext.RouteData.Values["id"].ToString();

你可能感兴趣的:(mvc 从后台得到前台元素值的方法)