Can I have a .htm page that calls a .aspx page as an include?? If so, how??
Thanks
Printable View
Can I have a .htm page that calls a .aspx page as an include?? If so, how??
Thanks
nopes.
What are you trying to accomplish?
Ok, seeing how you answered my other post about the iframe I will abandon that and just keep everything here.
Here is what I am wanting to do... (First off, I'm pretty new to asp.net.)
Very basicly, I just want a section on each of my .html pages that is a login. I assume this would be pretty easy if all the pages were .aspx, but the content on these pages is kept up by people who know absolutely nothing other than Frontpage. So I really don't want them to have to mess with any code.
What would be the best way of doing this?
On a side note, I got the iframe working.
Thanks
You make a form element on you htm page called login you have it submit to login.aspx. login.aspx uses Request.Forms("name/password)/["name/password"] to validate the login and redirect to an appropriate page.
Now I am going to say that is not the .net way. I'm not sure if a new ASPX proccesor is loaded for every page in .net but I don't think that is the case. I think every page runs under one proccess now unlike asp so there is no reason to use a .htm unless it is pure static text being displayed......
I'm not 100% on that dll load bit, but I'm pretty sure....
Am I right FrogMan? (Glad to see the old avatar come back btw...)