如何在asp.net中使用javascript从代码中添加Querystring参数

本文关键字:代码 添加 参数 Querystring javascript asp net | 更新日期: 2023-09-27 18:06:09

我正在打开一个页面onClick事件使用javascript从后面的代码。但是我想传递querystring参数并在另一个页面上访问它。

string id=1;
    teammember.Attributes.Add("onclick", "window.location.href='TeamMemberDetails.aspx?Id=" + Id + "'");

上面的代码工作正常!

现在我想用Javascript添加QueryString,并从CodeBehind的另一个页面访问它。

I Tried:

teammember.Attributes.Add("onclick", "window.location.href='TeamMemberDetails.aspx?Id=" + Id + "'" + "&isabout=true");

但是它不工作!

如何使用HTML锚进行条件重定向:

 <a style="border: 0px none; float: left;" href="TeamMember.aspx">
            <img alt="<--" src="Images/ArrowLeft.png" style="display: inline-block; cursor: pointer;
                border: 0 none;" />
        </a>

在上面我想设置条件重定向取决于Querystring参数?

例如:if isabout=true,则重定向到TeamMember。其他。aspx感谢帮助!由于

如何在asp.net中使用javascript从代码中添加Querystring参数

查询字符串中有一个单引号'。您必须将引号'的位置更改为href字符串的末尾。

改变这种情况。

teammember.Attributes.Add("onclick", "window.location.href='TeamMemberDetails.aspx?Id=" + Id + "'" + "&isabout=true");

teammember.Attributes.Add("onclick", "window.location.href='TeamMemberDetails.aspx?Id=" + Id + "&isabout=true'");