zoukankan      html  css  js  c++  java
  • 常用命名空间位置

    写类文件时候不只是个把地方要用到某些方法,就不想引入命名空间了。哎,搞不清楚,记录下吧。用到个记录个。

    注意以下要添加项目引用 System.Web.dll

    使用using System.Configuration;这些需要using System.Configuration;命名空间

      public void Break(string StrInfo)
      {  
       System.Web.HttpContext.Current.Response.Write("<script>alert(\'"+ StrInfo +"\');history.back();</script>");
       System.Web.HttpContext.Current.Response.End();
      }

    userjudge2=System.Text.Encoding.Default.GetByteCount(str);

    StringBuilder sb=new StringBuilder();

    sb.Append("×××)");


     

    Response

    System.Web.HttpContext.Current.Response.Write ("<script>alert(\'" + ErrInfo + "\');history.back();<" + "/script>"); 

    Server.MapPath 

    System.Web.HttpContext.Current.Server.MapPath( 
       ConfigurationSettings.AppSettings[
    "AC_DbPath"]); 


    Session

    System.Web.HttpContext.Current.Session["AdmCheckCode"]  

    MD5

    System.Web.Security.FormsAuthentication.HashPasswordForStoringInConfigFile(str,"MD5"

    ConfigurationSettings

    System.Configuration.ConfigurationSettings.AppSettings["MailFrom"]; 

    ServerVariables (热,找了我半天才找到。 )

    System.Collections.Specialized.NameValueCollection  ServerVariables = System.Web.HttpContext.Current.Request.ServerVariables; 
       Response.Write(ServerVariables[
    "HTTP_REFERER"]); 

    HtmlEncode

    System.Web.HttpUtility.HtmlEncode(msg)

     PagedDataSource

    private System.Web.UI.WebControls.PagedDataSource _objpds;

     Regex正则表达式

    System.Text.RegularExpressions Regex

    Request.CurrentExecutionFilePath 获取当前请求的虚拟路径
    StreamReader sr = File.OpenText(
        System.Web.HttpContext.Current.Server.MapPath("Resource/Templet"));

  • 相关阅读:
    关内存地址的分配
    关于URL
    linux的8小时差问题解决
    关于Scanner类
    域名后缀
    匿名对象用法
    final修饰符,多态,抽象类,接口
    二维数组的传参
    关于随机数
    面向对象编程的三大基本特征
  • 原文地址:https://www.cnblogs.com/zkxp/p/292721.html
Copyright © 2011-2022 走看看