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 SkipVought 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: anupamkant
  • Order by date
  1. anupamkant

    Grab URL from address bar and redirect depending what is typed

    can u use server side code like this <% if Instr(Request.ServerVariables(&quot;HTTP_REFERER&quot;), &quot;http://www.site3.com&quot;) > -1 then response.redirect(&quot;http://xyz.com&quot;) end if %> sort of this (may be syntex error) but logic is this.
  2. anupamkant

    Complex Window Communication

    Thanks Erik and Ritsuke use this for netscape window.opener.document.getElementById('div2Box').value and on parent use <textarea name=&quot;div2Box&quot; id=&quot;div2Box&quot;></textarea> working in both IE and NS.
  3. anupamkant

    Complex Window Communication

    change this if this is the only problem... var sep=&quot;&quot;; if (window.opener.bidForm.div2Box.value != &quot;&quot;) sep = &quot;+&quot; window.opener.bidForm.div2Box.value = window.opener.bidForm.div2Box.value + sep + document.division2.chk.value; It seems that I could not get...
  4. anupamkant

    Complex Window Communication

    try this on child window <html> <head> <title>Division 2 Listing</title> <script language=javascript> function div2Value(){ for(var i=0;i<document.division2.chk.length;i++) { if (document.division2.chk[i].checked) window.opener.bidForm.div2Box.value =...

Part and Inventory Search

Back
Top