asp.net 前台获取参数
展开全部
1,在.ascx\.aspx文件里第一一个
<input type="hidden" id="txtID" 2,runat="server" />
在后台Page_load事件中,先获得
intput = Convert.ToInt32(Request.QueryString["put"]);
3,然后给前台的txtID赋值
txtID.Value = intput.ToString();
4,.ascx\.aspx文件里,用JS
var put = document.getElementById(txtID).value;
就可以了
<input type="hidden" id="txtID" 2,runat="server" />
在后台Page_load事件中,先获得
intput = Convert.ToInt32(Request.QueryString["put"]);
3,然后给前台的txtID赋值
txtID.Value = intput.ToString();
4,.ascx\.aspx文件里,用JS
var put = document.getElementById(txtID).value;
就可以了
展开全部
直接在aspx页面中 <%=Request["put"].ToString()%>就能获取
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
string a = Request.QueryString["put"];
function $G(str) //在html中获取url参数的脚本
{
var Url=window.location.href; //如果想获取框架顶部的url可以用 top.window.location.href
var u,g,StrBack='';
if(arguments[arguments.length-1]=="#")
u=Url.split("#");
else
u=Url.split("?");
if (u.length==1)
g='';
else
g=u[1];
if(g!='')
{
gg=g.split("&");
var MaxI=gg.length;
str = arguments[0]+"=";
for(xm=0;xm<MaxI;xm++)
{
if(gg[xm].indexOf(str)==0)
{
StrBack=gg[xm].replace(str,"");
break;
}
}
}
return StrBack;
}
获取 var a=$G(put)
function $G(str) //在html中获取url参数的脚本
{
var Url=window.location.href; //如果想获取框架顶部的url可以用 top.window.location.href
var u,g,StrBack='';
if(arguments[arguments.length-1]=="#")
u=Url.split("#");
else
u=Url.split("?");
if (u.length==1)
g='';
else
g=u[1];
if(g!='')
{
gg=g.split("&");
var MaxI=gg.length;
str = arguments[0]+"=";
for(xm=0;xm<MaxI;xm++)
{
if(gg[xm].indexOf(str)==0)
{
StrBack=gg[xm].replace(str,"");
break;
}
}
}
return StrBack;
}
获取 var a=$G(put)
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
Request.QueryString["put"]
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询