Ado.net: Passing query strings to Programs

Source: Internet
Author: User
Tags trim
Page query.aspx can be queried in the database based on the passed ID parameters, such as:
Http://gqa-eric-lv/aspnet/MyBBSQuery/query.aspx?id=26
This can be used in programs. request.querystring["id" gets the value of the query string ID, as in the following example:
SqlConnection coredb=new SqlConnection ();
coredb.connectionstring= "Workstation id=" GQA-ERIC-LV ";p acket size=4096;integrated Security=sspi;"
"Data source=" GQA-ERIC-LV ";p ersist security info=false;initial catalog=coredb";

int queryid=3;
String Idstr=textbox2.text.trim ();
Queryid=convert.toint32 (this. request.querystring["ID"]);
if (queryid<0| | TextBox2.Text.Trim ()!= "") return;
String myselectquery = "Select Id,title,content from Mybbs where id=" +queryid;
SqlCommand mycommand = new SqlCommand (myselectquery,coredb);
Coredb.open ();
SqlDataReader myreader = Mycommand.executereader ();
Try
{
while (Myreader.read ())
{
textbox1.text=myreader["title"]. ToString ();
textbox2.text=myreader["ID"]. ToString ();
textbox3.text=myreader["Content"]. ToString ();
}
}
Finally
{
Myreader.close ();
Coredb.close ();
}

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.