c# - Visual Basic 2010 Login view asp.net -
i've created asp.net application membership login , registeration using generic template in visual studios 2010. below how template looks within visual studios: http://www.flickr.com/photos/79954191@n05/7345407648/
then once load application re-directs me login screen (as should) problem it's missing template / css elements. below picture when loaded: http://www.flickr.com/photos/79954191@n05/7160199089/
thank in advance!!
check web.config permissions on css folder.
you must use location give permissions no-authenticated users
<location path="pathtocssfolder"> <system.web> <authorization> <allow users ="*" /> </authorization> </system.web> </location>
check link : http://support.microsoft.com/kb/316871
Comments
Post a Comment