ASP.NET页面搜索代码

A.aspx代码:<%@PageLanguage="C#"AutoEventWireup="true"CodeFile="A.aspx.cs"Inherits="A"%>... A.aspx代码:
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="A.aspx.cs" Inherits="A" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>无标题页</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:TextBox ID="TextBox1" runat="server" OnTextChanged="TextBox1_TextChanged" Style="z-index: 100;
left: 98px; position: absolute; top: 91px"></asp:TextBox>
<asp:Button ID="Button1" runat="server" OnClick="Button1_Click" Style="z-index: 102;
left: 269px; position: absolute; top: 91px" Text="Button" />

</div>
</form>
</body>
</html>
A.aspx.cs代码:
。。。。。。
using System.Data.SqlClient;

public partial class A : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{

}
protected void TextBox1_TextChanged(object sender, EventArgs e)
{

}
protected void Button1_Click(object sender, EventArgs e)
{
string Key = this.TextBox1.Text; //声明变量等于TextBox1的值。
Response.Redirect("B.aspx?Key=" + Key); //转到B页面并且把TextBox1的值传过去。
}
}

B.aspx代码:
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="B.aspx.cs" Inherits="B" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>无标题页</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:GridView ID="GridView1" runat="server" Style="z-index: 100; left: 121px; position: absolute;
top: 113px" >
</asp:GridView>

</div>
</form>
</body>
</html>
B.aspx.cs代码
。。。。。。
using System.Data.SqlClient;

public partial class B : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{

string Key = Request.QueryString["Key"].ToString(); //接受A页面参数
SqlConnection conn = new SqlConnection("Server=OEM-B6E3FD40292;Initial Catalog=cacheeproject;User ID=sa"); //连接数据库
conn.Open(); //打开数据库
SqlDataAdapter sda = new SqlDataAdapter("select * from cacheeproject where 列名 like valueName", conn); //模糊查找
DataTable Data = new DataTable(); //声明一个DataTable变量叫Data
sda.Fill(Data); //填充这个Data
conn.Close(); //关闭数据库
this.GridView1.DataSource = Data;
this.GridView1.DataBind();

}

}

哪里错了,运行时提示错误,高手帮忙看看,谢谢了!我要实现的功能是:我建了个数据库,然后在A页面建个搜索,点击按钮可以把搜索到的信息都显示到B页面,我用的是VS2005+SQL2000做的。
string Key = Request.QueryString["Key"].ToString(); //接受A页面参数
这句话错了
展开
 我来答
husonghaoyue
2009-11-29 · TA获得超过133个赞
知道小有建树答主
回答量:99
采纳率:0%
帮助的人:73.7万
展开全部
SqlDataAdapter sda = new SqlDataAdapter("select * from cacheeproject where 列名 like valueName", conn); //模糊查找
这句错了 模糊查询应该为
SqlDataAdapter sda = new SqlDataAdapter("select * from cacheeproject where 列名 like %valueName%", conn); //模糊查找

Thank you ! I want to your points.
fei686868
2009-11-27 · TA获得超过203个赞
知道小有建树答主
回答量:313
采纳率:0%
帮助的人:93.4万
展开全部
什么错误你没说...不好查哦。。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
百度网友4769606
2009-11-27 · TA获得超过237个赞
知道小有建树答主
回答量:203
采纳率:0%
帮助的人:125万
展开全部
string Key = Request.QueryString["Key"]+""; 试试
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
qgt_ak
2009-11-28
知道答主
回答量:3
采纳率:0%
帮助的人:0
展开全部
你把错误粘贴出来。
SqlDataAdapter sda = new SqlDataAdapter("select * from cacheeproject where 列名 like valueName", conn); 这句都有错误,

试下这个:
SqlDataAdapter sda = new SqlDataAdapter("select * from cacheeproject where 列名 like 'valueName', conn);
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(2)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式