First off, can this be done?? I have a default.htm page that I want to place an iframe in and have the iframe source be login.aspx. Is this possible. I keep getting an error... 'Could not load type testapp.login'
Printable View
First off, can this be done?? I have a default.htm page that I want to place an iframe in and have the iframe source be login.aspx. Is this possible. I keep getting an error... 'Could not load type testapp.login'
First, it's possible.
Second, the error you are getting is related to asp.net. Make sure your page directive is correct.
just set src="whatever.aspx"Code:<iframe id="FrameLoad" scrolling=auto runat=server style="width: 630px; height: 260px">
</iframe>
now, if you want to do it dynamically, that is a bit different, just reply and tell me...