× The internal search function is temporarily non-functional. The current search engine is no longer viable and we are researching alternatives.
As a stop gap measure, we are using Google's custom search engine service.
If you know of an easy to use, open source, search engine ... please contact support@midrange.com.



Justin,

Did you look at the cookie reader sample I posted?  It is a different
approach and may provide the answer...

Friendly reminder: the requesting domain MUST be the same as the domain that
wrote the cookie.  This can be an annoying fact of dealing with cookies, but
if your website wrote the cookie and you are trying to test a page off your
local hard drive or something you will never be able tor ead the cookie...

Joel R. Cochran
Director of Internet Services
VamaNet.com
(800)480-8810
mailto:webmaster@vamanet.com


> -----Original Message-----
> From: Justin Houchin [mailto:jhouchin9@charter.net]
> Sent: Friday, May 03, 2002 8:58 AM
> To: web400@midrange.com
> Subject: [WEB400] JavaScript Problems
>
>
> This is a multi-part message in MIME format.
> --
> [ Picked text/plain from multipart/alternative ]
> Joel or Anyone,
>     My GetCookie function is not getting the cookie, it keeps
> returning null. Here is my source:
>
> <script language= "javascript">
> var useridCookie = "useridCookie";
> function GetCookie(name) {
>    var value = name + "=";
>    var i = 0;
>    while(i < document.cookie.length) {
>       var j = (i + value.length);
>       if (document.cookie.substring(i,j) == value) {
>          var len = document.cookie.indexOf(";",j);
>          if (len == -1)
>             len = document.cookie.length;
>          return unescape(document.cookie.substring(j, len));
>       }
>       i = document.cookie.indexOf(" ", i) + 1;
>       if (i == 0) break;
>    }
>    return null;
> }
>
>
> function changeForm() {
>  var cookieValue = GetCookie(useridCookie);
>   document.useridform.USERID.value = cookieValue;
>  document.useridform.submit()
> }
> </script>
>
> Here is the form:
>
> <form name="useridform" method="GET" action="/cgi-bin/iteminq">
>  <input type="hidden" name="XCAT" value="ACC">
>  <input type="hidden" name="USERID" value="GUEST">
>  </form>
>
>
> Here is the line that calls the script:
>
> <td><input type="button"  value="test" target="mainFrame"
> onClick="changeForm();"></td>
>
>
> Please Help!!!
>
>
> Thanks,
>
> Justin Houchin
> Programmer
> Reliatek, Inc
> jhouchin9@charter.net
> _______________________________________________
> This is the Web Enabling the AS400 / iSeries (WEB400) mailing list
> To post a message email: WEB400@midrange.com
> To subscribe, unsubscribe, or change list options,
> visit: http://lists.midrange.com/cgi-bin/listinfo/web400
> or email: WEB400-request@midrange.com
> Before posting, please take a moment to review the archives
> at http://archive.midrange.com/web400.
>


As an Amazon Associate we earn from qualifying purchases.

This thread ...


Follow On AppleNews
Return to Archive home page | Return to MIDRANGE.COM home page

This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].

Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.