Quick IIS question [Resolved]
I have a virtual directory called "MOUSEPAD", it has no default page. In fact, it has no ASPX page in it.
When a user requests http://machinename/mousepad, I'd like IIS to send the user to
http://machinename/mousepad/somefoldername/abc.aspx
How can I do this?
Re: Quick IIS question [Resolved]
Just a little pointer, for any future searchers:
DefaultDoc="/Folder1/Folder2/Default.aspx"
wouldn't work.
Instead, you should make it
DefaultDoc="Folder1/Folder2/Default.aspx"
Note the missing forwardslash.
Re: Quick IIS question [Resolved]
Damn... just tried this 'as-is' in Inetmgr, and it worked. I should've been more careful. *slap*