首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > asp.net >

传值并跳转解决方法

2012-03-06 
传值并跳转C# codeif(!Page.IsPostBack){this.txtsid.TextRequest.QueryString[sid]this.txtsname.Tex

传值并跳转

C# code
if(!Page.IsPostBack)            {                this.txtsid.Text=Request.QueryString["sid"];                this.txtsname.Text=Request.QueryString["sname"];            }        }


C# code
[color=#FF0000]string url="addsoftwareupgrade.aspx?sid=" + txtsid.Text + "&sname=" + txtsname.Text ;                 Response.Redirect(url);[/color]                Response.Write("<script>if(confirm('此软件没有升级记录,是否添加?')){window.location.href='addsoftwareupgrade.aspx'};</script>");

怎么把url写在href里面啊。我弄了半天没弄出来,应该是符号的问题吧。

[解决办法]
string url="addsoftwareupgrade.aspx?sid=" + txtsid.Text + "&sname=" + txtsname.Text ; 
Response.Write("<script>if(confirm('此软件没有升级记录,是否添加?')){window.location.href='"+url+"'};</script>");

热点排行