Hello
As I understand it, my simple 'new user' form requires an aspx file, an aspx.vb file, and a Web.config file?
I have spend an hour or so on this page http://www.sitepoint.com/web-config-file-demystified/ and have come up with an attempt at creating a Web.config page to accompany my simple Web page form (not application):
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<system.web>
<compilation
defaultLanguage="vb"
debug="true" />
<customErrors mode="RemoteOnly" />
'defaultRedirect="mycustompage.htm" />
<authentication mode="Windows" />
<authorization>
<allow roles="Administrators,Users" />
<deny users="*" />
</authorization>
<globalization
requestEncoding="utf-8"
responseEncoding="utf-8"
culture="en-GB" /&g ...
Go to the complete details ...