
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页面参数
这句话错了 展开
<%@ 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页面参数
这句话错了 展开
4个回答
展开全部
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.
这句错了 模糊查询应该为
SqlDataAdapter sda = new SqlDataAdapter("select * from cacheeproject where 列名 like %valueName%", conn); //模糊查找
Thank you ! I want to your points.
展开全部
什么错误你没说...不好查哦。。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
string Key = Request.QueryString["Key"]+""; 试试
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
你把错误粘贴出来。
SqlDataAdapter sda = new SqlDataAdapter("select * from cacheeproject where 列名 like valueName", conn); 这句都有错误,
试下这个:
SqlDataAdapter sda = new SqlDataAdapter("select * from cacheeproject where 列名 like 'valueName', conn);
SqlDataAdapter sda = new SqlDataAdapter("select * from cacheeproject where 列名 like valueName", conn); 这句都有错误,
试下这个:
SqlDataAdapter sda = new SqlDataAdapter("select * from cacheeproject where 列名 like 'valueName', conn);
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询