if i used this

<authentication mode="Forms">
			<forms loginUrl="Default.aspx"  timeout="90" />			
		</authentication>
		<authorization>
			<deny users="?"/>			
		</authorization>

so that unauthorized user do not access the content then the Default page do not show any images in the login page
i have to use this in order to do so

<authentication mode="Forms">
			<forms loginUrl="Default.aspx"  timeout="90" />			
		</authentication>
		<authorization>
			<allow users="?"/>			
		</authorization>

anyone can help me the images are in image name folder directly under the main root.

Recommended Answers

All 2 Replies

>user do not access the content then the Default page do not show any images in the login page

Use location element.

<location path="Images">
      <system.web>
         <authorization>
            <allow users="?"/>
         </authorization>
      </system.web>
   </location>
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.