asp怎样查询数据库

asp怎样查询数据库,第1张

首先创建SqlConnection对象连接数据库,然后定义查询字符串,最后对GridView控件进行数据绑定。

示例:

下面通过一个示例介绍在ASP.NET 2.0应用程序中如何查询数据库中记录。

新建一个网站,默认主页为Default.aspx,在Default.aspx页面上分别添加一个TextBox控件、一个Button控件和一个GridView控件,并把Button控件的Text属性值设为“查询”。该页在实现时,首先编写一个GridView控件数据绑定方法bind(该方法请参见5.3.2中bind方法),并在Page_Load事件中调用该方法显示数据库中记录,具体代码如下。

protected void Page_Load(object sender, EventArgs e)

{

if (!IsPostBack)

{

this.bind()

}

}

然后在【查询】按钮Click事件下编写实现数据库查询 *** 作的代码,具体代码如下。

protected void Button1_Click(object sender, EventArgs e)

{

if (TextBox1.Text != "")

{

string str = "select * from Region where RegionID='" + TextBox1.Text.Trim() + "'"

sqlconn = new SqlConnection(sqlstr)

sqlconn.Open()

SqlCommand sqlcom = new SqlCommand(str,sqlconn)

int result = Convert.ToInt32(sqlcom.ExecuteScalar())

if (result >0)

{

SqlDataAdapter myda = new SqlDataAdapter(str, sqlconn)

DataSet myds = new DataSet()

myda.Fill(myds)

GridView1.DataSource = myds

GridView1.DataBind()

sqlconn.Close()

}

else

Response.Write("<script>alert('没有相关记录')</script>")

}

else

this.bind()

}

<!--#include file="conn.asp"-->

<%

set rs=Server.CreateObject("ADODB.RecordSet")

sql="select top 20 * from test where username like '%kiming%' order by id desc"

rs.Open sql,conn,1,3

Response.ContentType = "text/xml"

Response.Expires = -1

Response.Write("<?xml version='1.0' encoding='gb2312' standalone='yes' ?>")

Response.Write("<list>")

Response.Write("<FolderList>")

do while not rs.eof

Response.Write("<Folder USERNAME='"&rs("username")&"' MESSAGE='"&rs("message")&"' EMAIL='"&rs("email")&"' />")

rs.movenext

loop

Response.Write("</FolderList>")

Response.Write("</list>")

if Conn.state<>0 then Conn.close

set Conn=nothing

if rs.state<>0 then rs.close

Set rs = Nothing

%>


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/sjk/9388479.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-27
下一篇 2023-04-27

发表评论

登录后才能评论

评论列表(0条)

保存