Imports System.Collections.Specialized
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
Dim n As NameValueCollection = Request.QueryString
' See if any query string exists
If n.HasKeys() Then
Dim k As String = n.GetKey(0)
Dim v As String = n.[Get](0)
Response.Write(v)
Response.Write(k)
End If
End Sub
.............................................
I hope this code will help u :D
Thanks And Regards,
Shailendra Kumar Singh
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
Dim n As NameValueCollection = Request.QueryString
' See if any query string exists
If n.HasKeys() Then
Dim k As String = n.GetKey(0)
Dim v As String = n.[Get](0)
Response.Write(v)
Response.Write(k)
End If
End Sub
.............................................
I hope this code will help u :D
Thanks And Regards,
Shailendra Kumar Singh
No comments:
Post a Comment