наиболее интересные члены класса |
|
MachineName | имя компьютера сервера |
MapPath() | возвращает физический путь к указанному файлу на сервере |
HtmlEncode() | превращает HTML знаки в HTM сущности |
HtmlDecode() | превращает HTM сущности в HTML знаки |
UrlEncode() | кодирует строку URL |
UrlDecode() | декодирует строку URL |
Default.aspx
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %> <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server"> <meta charset="utf-8" /> <title></title> </head> <body> <form id="form1" runat="server"> <div> <asp:Label ID="Label1" runat="server" Text=""></asp:Label> <br /> <asp:Label ID="Label2" runat="server" Text=""></asp:Label> <br /> <asp:Label ID="Label3" runat="server" Text=""></asp:Label> <br /> <asp:Label ID="Label4" runat="server" Text=""></asp:Label> <br /> <asp:Label ID="Label5" runat="server" Text=""></asp:Label> <br /> <asp:Label ID="Label6" runat="server" Text=""></asp:Label> </div> </form> </body> </html>
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %> <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server"> <meta charset="utf-8" /> <title></title> </head> <body> <form id="form1" runat="server"> <div> <asp:Label ID="Label1" runat="server" Text=""></asp:Label> <br /> <asp:Label ID="Label2" runat="server" Text=""></asp:Label> <br /> <asp:Label ID="Label3" runat="server" Text=""></asp:Label> <br /> <asp:Label ID="Label4" runat="server" Text=""></asp:Label> <br /> <asp:Label ID="Label5" runat="server" Text=""></asp:Label> <br /> <asp:Label ID="Label6" runat="server" Text=""></asp:Label> </div> </form> </body> </html>
Default.aspx.cs
using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; public partial class _Default : System.Web.UI.Page { void Function() { Label1.Text = "MachineName : " + Server.MachineName; Label2.Text = "MapPath() : " + Server.MapPath("Default.aspx"); Label3.Text = "HtmlEncode() : " + Server.HtmlEncode("<h4>Hello World!</h4>"); Label4.Text = "HtmlDecode() : " + Server.HtmlDecode("<h4>Hello World!</h4>"); Label5.Text = "UrlEncode() : " + Server.UrlEncode("http://mail.ru/?a=10"); Label6.Text = "UrlDecode() : " + Server.UrlDecode("http%3a%2f%2fmail.ru%2f%3fa%3d10"); } protected void Page_Load(object sender, EventArgs e) { Function(); } }
using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; public partial class _Default : System.Web.UI.Page { void Function() { Label1.Text = "MachineName : " + Server.MachineName; Label2.Text = "MapPath() : " + Server.MapPath("Default.aspx"); Label3.Text = "HtmlEncode() : " + Server.HtmlEncode("<h4>Hello World!</h4>"); Label4.Text = "HtmlDecode() : " + Server.HtmlDecode("<h4>Hello World!</h4>"); Label5.Text = "UrlEncode() : " + Server.UrlEncode("http://mail.ru/?a=10"); Label6.Text = "UrlDecode() : " + Server.UrlDecode("http%3a%2f%2fmail.ru%2f%3fa%3d10"); } protected void Page_Load(object sender, EventArgs e) { Function(); } }