C#怎么获取后台的变量
前台页面<inputtype="button"class="inputbutton"value="<%=Resources.Comment.ExtraContent%>"...
前台页面<input type="button" class="inputbutton" value="<%=Resources.Comment.ExtraContent %>" onclick="javascript:location.href='AddContent.aspx?id='+id" />
onclick="javascript:location.href='AddContent.aspx?id='+id" /> ,两个id 第一个是要穿的参数,第二个是后台的变量id 这个格式怎么写才正确 展开
onclick="javascript:location.href='AddContent.aspx?id='+id" /> ,两个id 第一个是要穿的参数,第二个是后台的变量id 这个格式怎么写才正确 展开
展开全部
onclick="javascript:location.href='AddContent.aspx?id='+<%=id %>" />
注意后台(a.aspx.cs)的id 一定要protected 级别或以上
class A:Page
{
protected int id=100;
...
}
注意后台(a.aspx.cs)的id 一定要protected 级别或以上
class A:Page
{
protected int id=100;
...
}
更多追问追答
追问
有,我现在是这样子做的,然后还是获取不到参数的值
追答
onclick="javascript:location.href='AddContent.aspx?id='" />
//这样
展开全部
用Request.QueryString["id"] 在后台接收
举例
前台"javascript:location.href='AddContent.aspx?id='+id" />
后台 string var=Request.QueryString["id"];//接收你传过来的值
举例
前台"javascript:location.href='AddContent.aspx?id='+id" />
后台 string var=Request.QueryString["id"];//接收你传过来的值
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
string s=Request.QueryString["id"];
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询