string tt ="<b>12345</B>"
Response.Write( );
怎么写可以让 <b> 不运行 直接打印出来
要打出来的结果是:
<b>12345</B>"
string tt ="<b>12345</B>"
Response.Write( );
怎么写可以让 <b> 不运行 直接打印出来
要打出来的结果是:
<b>12345</B>"
string s = Utility.HtmlEncode(s);
你用Label,
string tt ="<b>12345</B>"
Label la=new Label();
la.Text=tt;