zoukankan      html  css  js  c++  java
  • C#获取页面URL地址

            #region 获取页面地址
            
    /// <summary>
            
    /// 获取页面地址
            
    /// </summary>
            
    /// <returns></returns>
            public static string GetUrl()
            {
                
    //  2009年12月15日 11:45:24
                
    //  B哥 kuibono@163.com
                string strTemp = "";
                
    if (System.Web.HttpContext.Current.Request.ServerVariables["HTTPS"== "off")
                {
                    strTemp 
    = "http://";
                }
                
    else
                {
                    strTemp 
    = "https://";
                }

                strTemp 
    = strTemp + System.Web.HttpContext.Current.Request.ServerVariables["SERVER_NAME"];

                
    if (System.Web.HttpContext.Current.Request.ServerVariables["SERVER_PORT"!= "80")
                {
                    strTemp 
    = strTemp + ":" + System.Web.HttpContext.Current.Request.ServerVariables["SERVER_PORT"];
                }

                strTemp 
    = strTemp + System.Web.HttpContext.Current.Request.ServerVariables["URL"];

                
    if (System.Web.HttpContext.Current.Request.QueryString.AllKeys.Length>0)
                {
                    strTemp 
    = strTemp + "?" + System.Web.HttpContext.Current.Request.QueryString;
                }

                
    return strTemp;
            }
            
    string myurl = GetUrl(); 
            
    #endregion
  • 相关阅读:
    基于YIIFRAMEWORK框架开发学习(一)
    Android学习系列(24)App代码规范之使用CheckStyle
    64为操作系统,64位IIS,运行32位应用程序的问题
    IE下设置网页为 首页,收藏
    部分.net 目录
    强大的ldd
    (原创)初试Robotium
    在solaris上安装iperf
    (原创)LoadRunner 中 调用dll
    (原创)学习NotesList(Robotium自带的例子)
  • 原文地址:https://www.cnblogs.com/kuibono/p/1624627.html
Copyright © 2011-2022 走看看