Hello all
Ok, ive created a page that gets the id that a user has selected of an item, and sends me to a page called express
when they are transfered over the variable "ID" is apended to the url (i.e express.aspx?id=100)
What i want to do, is query the dbase for ID = 100, and return back the full row and insert it all in to textbox's
so textbox1.text = id
textbox2.text= name
textbox3.text = description etc etc etc!
below was my code attempt! dont know how well i did! but its not working to well!
Can anyone please update it! add to it as requied! im completly lost now!
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
Dim Id = Request.QueryString("id")
SqlDataSource1.SelectCommand = &qu ...
Go to the complete details ...