Quote:
Originally posted by Gvynt
I'm trying to get data from that second ASP. I wish to run that second page as OLAP Administrator and get data to the first page, running as non-priveleged user.
|
Hi!
If' you can live with the second asp-page (adminpage) not being an integrated part of the first page, you can try this
Code:
<iframe src="your_path_to/filename.asp" name="your_iframe_name"width="" height="" frameborder="0" marginwidth="0" marginheight="0" ></iframe>
<layer src="your_path_to/filename.asp" name="your_layer_name"width="" height="" ></layer>
This should work in both netscape & explorer.
This will display the admin_page seemlessly in the regular_user_page.
Hope this helps...