把你的using改为:
using System;
//add this for stringbuilder
using System.Text;
using System.Collections;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Web;
using System.Web.SessionState;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.HtmlControls;
----------------------------
另外,你的代码中
if(this.t.Text != null)
{
str = this.tbName.Text.Trim() + ",你好!";
}
中的t,没有定义,看看是不是差控件
给你说一种简单的方法
private void btHello_Click(object sender, System.EventArgs e)
{
if(this.t.Text != null)
{
str = this.tbName.Text.Trim() + ",你好!";
}
else
{
Response.Write("");
}
}
只写这几句就可以了,别的全不要了
这样就能验证了简单又好用。
希望能帮到你。
一、加引用
using System.Text;
二、把StringBuilder StrScript = new StringBuilder();
改为
System.Text.StringBuilder strScript=new System.Text.StringBuilder();