Hello
I have a project where I set the startup page to Welcome.aspx and in the web.config I have
<authentication mode="Forms">
<forms loginUrl="Login.aspx" protection="All" timeout="30">
</forms>
</authentication>
At some point I construct an a tag like this:
Response.Write("<a...
Hello
I have a webform with a series of radiobuttons where a user can select which pages he will visit next after he hits a button.
I thought I'd store his selections like this:
private int SelectedSchemes()
{
if ( rdSTEERY.Checked )
iSelected += Convert.ToInt32(Math.Pow(2,1));
if (...
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.