asp.net(c#)GridView绑定的一些问题sql语句

先大概讲下我的系统。一个页面登陆用的,登陆进去后的页面有一个GridView。GridView那个页面的代码大概是:publicpartialclassXinxiCS_X... 先大概讲下我的系统。一个页面登陆用的,登陆进去后的页面有一个GridView。
GridView那个页面的代码大概是:
public partial class XinxiCS_XinxiCS : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
this.bind();
}

this.TextBox1.Text = Convert.ToString(Session["username"]);

//我用这句话把登陆时输入的账号传给 TextBox1.Text ,登陆的账号是123,那么TextBox1.Text就是123
}

public void bind()
{

SqlConnection strcon = new SqlConnection(System.Configuration.ConfigurationManager.AppSettings["conStr1"]);
strcon.Open();

string strsql = "select * from T_Xinxi where username = TextBox1.Text;
//这句代码是错的,但是我想要的效果就是这样, where username = TextBox1.Text里面的内容。TextBox1.Text是123的话,GridView绑定的就 where username = 123的内容。TextBox1.Text是456的话,GridView绑定的就 where username = 456的内容。
请路过的各位好心人帮小弟写下正确的代码,我是菜鸟,不怎么会表达,劳烦了,谢谢了。

SqlDataAdapter sda = new SqlDataAdapter(strsql, strcon);
DataSet ds = new DataSet();
sda.Fill(ds, "xinxi");
GridView1.DataSource = ds.Tables["xinxi"];
GridView1.DataKeyNames = new string[] { "id" };
GridView1.DataBind();
}

}
展开
 我来答
孙中吕
2009-08-19 · 专注C/S架构开发框架技术研究
孙中吕
采纳数:435 获赞数:788

向TA提问 私信TA
展开全部
楼上您们都是错的!

代码顺序1:
if (!IsPostBack)
{
this.bind();
}
代码顺序2:
this.TextBox1.Text = Convert.ToString(Session["username"]);

他先调用this.bind(),此时this.TextBox1.Text 的值为空。
应该改成这样:

if (!IsPostBack)
{
this.TextBox1.Text = Convert.ToString(Session["username"]);
this.bind();
}

然后将sql改成1楼说的:
string strsql = "select * from T_Xinxi where username = '"+TextBox1.Text+"';
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
巴恬Y9
2009-08-19 · 超过22用户采纳过TA的回答
知道小有建树答主
回答量:99
采纳率:0%
帮助的人:71.2万
展开全部
如果 username 是字符
string strsql = "select * from T_Xinxi where username = '"+TextBox1.Text+"'";

如果 username 是数字
string strsql = "select * from T_Xinxi where username = "+Convert.ToInt32(TextBox1.Text);
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
百度网友b173602
2009-08-19 · TA获得超过1681个赞
知道小有建树答主
回答量:1466
采纳率:0%
帮助的人:843万
展开全部
呵呵,这个简单,你把那句改成:
string strsql = "select * from T_Xinxi where username = '"+TextBox1.Text+"';
这样就ok了,呵呵...
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
qianthinkover
2009-08-19 · TA获得超过451个赞
知道小有建树答主
回答量:532
采纳率:0%
帮助的人:377万
展开全部
string strsql = "select * from T_Xinxi where username ='"+ TextBox1.Text+"'";
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
server126
2009-08-19 · TA获得超过597个赞
知道小有建树答主
回答量:877
采纳率:0%
帮助的人:188万
展开全部
一楼正解
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(3)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式