hi
I want to get a value passing through url. What i do is i just bind menu and passes a value through url. In Menuitem click event i just write code to get the value.
but it is not working. can anybody help me to solve this problem. thank you.
I want to get a value passing through url. What i do is i just bind menu and passes a value through url. In Menuitem click event i just write code to get the value.
Code:
Protected Sub Menu2_MenuItemClick(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.MenuEventArgs) Handles Menu2.MenuItemClick
Label1.Text = Request.QueryString("Category")
End Sub
Comment