1.<%=%> 里面放的变量名,如:<div><h1>Hello World</h1><p>Welcome to Beginning ASP.NET 3.5 on <%=DateTime.Now.ToString() %></p></div>输出结果为:Hello WorldWelcome to Beginning ASP.NET 3.5 on 2009-11-10 15:53:08 2. <%#%>…
在asp.net中可以通过HttpRequest.ServerVariables 属性来获取“ Web 服务器变量的集合” HttpRequest.ServerVariables 的用法: HttpRequest.ServerVariables["Str_Variables"] Str_Variables可以是下面表格中的变量名称 也可以使用下面的方法来获取所有的web服务器变量的集合 for (int i = 0; i < Request.ServerVariables.Cou…