I have a control with 'email' and 'password' textboxes and a 'autoLogin' checkbox. All are web form controls (not html controls). And there is a 'Login' hyperlink. When I click on heperlink, I want to move to other page using NavigateUrl property like below:
NavigateUrl="~/DoLogin.aspx?email={0}&pwd={1}&autoLogin={3}"
how to pass and how to get the query string?
Thanks in Advance...