I have a html page with a link on it:
<a href="javascript:win()">test</a>
The win() function is scripted as follows:
function win()
{
win=window.open("http://www.yahoo.com","win");
}
First time I click on the link the window opens. When I close the opened...
I have users coming from a non-IIS server to an IIS server.
They log into the non-IIS server and click on a URL link to the IIS server resource. Only super users can see this link. I want to login these users transparently in the background without forcing them to authenticate again. So what I...
I want to authenticate a user in the background with a set userid and password (super user) so that the user does not have to log in manually. Then I want to set the authorization header on the page and redirect the user to a resource on the website that is protected. Is this something that can...
How do i locate the index of an array?
for example if this is my php page:
<?php
$ArrayVar = ("a", "b", "c"); //this is the array
foreach ($ArrayVar)
{
echo(indexof($ArrayVar)); //need php equiv of "indexof"
}
?>
I want to see the following output:
0
1
2
I am trying to resize an IFRAME embedded in a html page. The problem is the html page is in one domain and the IFRAME is a separate domain. I know there is the cross domain security that IE5.0 and above implements to restrict cross domain scripting, but it is not like I am trying to read or...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.