http://www.myite.com/datain.aspx?ID=22&fname=Jack&lname=Giant
Then you just use this in the page to request it.
If Not (Request.Params("ID") Is Nothing) Then
Select Case CINT(Request.Params("ID"))
Case 0
'whatever here
Case else
'whatever here
End Select
End If
You actually have to create a dataset or datatable to which to bind the grid from. You can always do a webservice and call the webmethod from your app. The service should look like this.
<WebMethod> Public Function GetDS(ByVal strConn As String) as DataSet
Dim conn As New...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.