Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: moham
  • Order by date
  1. moham

    what's wrong with this simple, one line code?

    It is at the end of the yahoo url in the window.open method.
  2. moham

    what's wrong with this simple, one line code?

    There was a typo (semi-colon) in the previous post. Here's the correction: function win() { win=window.open("http://www.yahoo.com","win"); }
  3. moham

    what's wrong with this simple, one line code?

    I have a html page with a link on it: <a href=&quot;javascript:win()&quot;>test</a> The win() function is scripted as follows: function win() { win=window.open(&quot;http://www.yahoo.com&quot;,&quot;win&quot;); } First time I click on the link the window opens. When I close the opened...
  4. moham

    very-very newbie

    If IIS is not installed go Add/Remove Programs and click on Add Windows componets and then select IIS and complete installation. Once installation is complete save your asp file in the following default folder c:\Inetpub\wwwroot\test.asp Now you should be able to invoke that file in the browser...
  5. moham

    Transparent login using Basic Authorization

    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...
  6. moham

    Basic Authorization over SSL

    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...
  7. moham

    Locating the index of an array

    How do i locate the index of an array? for example if this is my php page: <?php $ArrayVar = (&quot;a&quot;, &quot;b&quot;, &quot;c&quot;); //this is the array foreach ($ArrayVar) { echo(indexof($ArrayVar)); //need php equiv of &quot;indexof&quot; } ?> I want to see the following output: 0 1 2
  8. moham

    How do I highlight text in a textarea on a form that is being edited?

    I figured this out using (IE Specific) -->creatTextRange() method for the textarea element.
  9. moham

    How do I highlight text in a textarea on a form that is being edited?

    How do I select/highlight a single word inside a textarea if I know the location(index) of that word in the string using javascript?
  10. moham

    How to resize and IFRAME without getting an &quot;Access Denied&quot; error?

    I ended up embedding the IFRAME in a div tag and then resized the layer. Works great.
  11. moham

    How to resize and IFRAME without getting an &quot;Access Denied&quot; error?

    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...
  12. moham

    quick iframe question

    Yes you can resize a frame without having to use a layer tag. simply change the height and width properties document.all.iframe.height = value; document.all.iframe.width = value;
  13. moham

    How do I get the width of a dynamically generated layer?

    I am trying to get the horizontal space occupied by a layer whose innerHTML is set dynamically. I do not set the width since the text varies. thanks

Part and Inventory Search

Back
Top