zoukankan      html  css  js  c++  java
  • ASP.NET中c#的URL编码处理

    ASP.NET中c#的URL编码处理
    要解决的问题:
    将下面的URL作为一个参数传到其他的页面
    1 http://domain/de.apx?uid=12&page=15
    2 url后面的参数中出现汉字等,如: ....aspx?title=起重机
    在出现上面的情况的时候,必须经过一个RUL编码和解码的过程,否则会出现错误.
    代码如下:
    复制内容到剪贴板代码:

    //传值
    string temp = " <a href='Add.aspx?url=" +Server.UrlEncode( skin.Page.Request.Url.AbsoluteUri )+ "&title=" +Server.UrlEncode( skin.Page.Header.Title )+ "'>添加到收藏夹</a>");

    //在另外一个文件中取从上面传的值
    if (Request.QueryString["url"] != null)
                {
                    string url = Server.UrlDecode(Request.QueryString["url"].ToString());
                    this.txtAddress.Text = url;
                }
                if (Request.QueryString["title"] != null)
                {
                   string title = Server.UrlDecode(Request.QueryString["title"].ToString());
                    this.txtTitle.Text = title;
               }

  • 相关阅读:
    linux基础
    1-1python自动化测试环境搭建及开发工具安装
    Linux常用命令
    049.NET5_中间件
    045.NET5_基本鉴权授权
    044.NET5_基于Session_Cookies认证
    042-043.NET5_ResultFilter以及双语言应用
    041.NET5_ExceptionFilter
    040.NET5_ExceptionFilter
    039.NET5_自定义Filter匿名
  • 原文地址:https://www.cnblogs.com/zhukezhuke/p/1767449.html
Copyright © 2011-2022 走看看