类型:转载 责任编辑:asp.net 日期:2007/05/23
热门软件下载:
怎么把<A href="http://www.sina.com.cn">新朗网</A>用console.writeline打出来
谢谢!
网友回答:
string a="<A href="http://www.sina.com.cn">新朗网</A>"
string a = <A href="http:/" + "/www.sina.com.cn">新朗网</A>";
string a = "<A href=http:/" + "/www.sina.com.cn">新朗网</A>";
string a = "<A href=http:/" + "/www.sina.com.cn>新朗网</A>";
string a="<A href=\"http://www.sina.com.cn\">新朗网</A>"
string a="<A href=\"http://www.sina.com.cn\">新朗网</A>"
string a = "<A href=http:/" + "/www.sina.com.cn>新朗网</A>";
String a=@"<A href="http://www.sina.com.cn">新朗网</A>";
console.writeline(a);
string i = @"<A href=http://www.sina.com.cn>新朗网</A>";
然后在需要的地方 再把i中的换成" 可以吗?