string htmlPage = @"<div class=""wecome"" id=""about"">
<h3>Welcome "+TexName.Text+"</h3>
</div>";
我想将texbox值传递给textbox.text。
<asp:TextBox ID="TexName" runat="server"></asp:TextBox>
我正在使用@,因为htmlpage变量包含近400行的html代码。没有@就会出现语法错误。
答案 0 :(得分:0)
试试这个
string htmlPage = @"<div class=" + "\"wecome\"" + " id=" + "\"about\"" + ">" +
"<h3>Welcome " + TexName.Text + "</h3>" +
"</div>";