I originally thought this was a Javascript question but I'm beginning to think I can do this within .NET.
I basically have a camera image on an IP camera and I want to display it on a page called test.aspx so I put this in the page:
<img src="http://192.168.1.30/images/campic.jpg">
And it works great. But I don't want to leave my camera wide open so I enabled authentication on the camera. Now I get a pop up windows asking me to login when I go to test.aspx. So I changed the URL to this:
<img src="http://admin

assword@192.168.1.30/images/campic.jpg">
and it does not work in IE7 because Microsoft has taken out the ability to pass credentials in the URL since around IE6. I want the image to be displayed without a pop up box coming up. How can I hard code the user name and password on test.aspx and login automatically when someone hits the page so they can see the camera image immediately?
Thanks.