如何在URL中传递数据

本文关键字:数据 URL | 更新日期: 2023-09-27 18:11:36

如何通过URL传递数据?

我需要通过,一封电子邮件,client_id等

Client.aspx?Email='teste@gmail.com'

现在我有一个Javascript函数,但我认为通过代码隐藏会更好

    $('.btIncluirAtendimento').live('click', function () {
        idCliente = $(this).attr('id').replace('cad_', '');
        popup = openPopup('../Cliente/AtendimentoNew.aspx?Cliente_Id=' + idCliente, 'IncluirAtendimento', 'toolbar=no,directories=no,status=no,menubar=no, scrollbars=yes,resizable=no', '720', '600', 'true');
    });

function openPopup(theURL, winName, features, myWidth, myHeight, isCenter) {
    if (window.screen) if (isCenter) if (isCenter == "true") {
        var myLeft = (screen.width - myWidth) / 2;
        var myTop = (screen.height - myHeight) / 2;
        features += (features != '') ? ',' : '';
        features += ',left=' + myLeft + ',top=' + myTop;
    }
    popup = window.open(theURL, winName, features + ((features != '') ? ',' : '') + 'width=' + myWidth + ',height=' + myHeight);
    return popup;
}

有人能帮我吗?

如何在URL中传递数据

你走在了正确的轨道上。首先,URL对值进行编码,如下所示。(编码一个数字不会有任何作用,所以如果所有客户端ID都是数字,那么第二个UrlEncode可能会被忽略。(

string url = String.Format("Client.aspx?Email={0}&ClientId={1}",
    HttpUtility.UrlEncode("test@gmail.com"),
    HttpUtility.UrlEncode("1234"));

这会给你这个网址:

"Client.aspx?Email=test%40gmail.com&ClientId=1234"

您可以使用以下代码行读取Client.aspx中的值:

string emailAddress = Request.QueryString["Email"];
int clientId = Int32.Parse(Request.QueryString["ClientId"]);

记得检查参数。如果ClientId不是数字,Int32.Parse((将引发异常。

您需要对url字符串进行编码,然后才能轻松地传递数据。

示例:

   Server.URLEncode("http://www.w3schools.com?mykey=datavalue");

您必须对关键字符进行编码。在这里找一个人物的描述。您的URL必须如下所示:

Client.aspx?Email=teste%40gmail.com
HttpUtility.UrlEncode(url)

http://msdn.microsoft.com/en-us/library/4fkewx0t.aspx