OK. Browse over to the file, save it to your HD, then open it in Notepad or Wordpad (NOT M$ Word!). Post the contents here.
Printable View
OK. Browse over to the file, save it to your HD, then open it in Notepad or Wordpad (NOT M$ Word!). Post the contents here.
Oh, and next time please use the [code] tag instead of bolding the text. Thanks. :)
okay i'll do that when i get home. and i will use thebutton isnted of the BOLD button :DCode:CODE
Peerzyboy ;)
this has been copied staight out of notepad:
Peerzyboy :cool2:Code:<html>
<head><script LANGUAGE="JavaScript">
<!--
// HotMail Login ID Storage Program
// Written and © by Michael Nobilio
// June 7, 1998
// [email protected]
//
// Distribute Freely, as long as
// this notice is left in the code.
//
// Please notify me of any bugs.
notice = "Click \"Store Login\" to save your Login ID.";
promptMessage = "No Login Stored";
function setCookie(name, value, expire)
{
document.cookie = name + "=" + escape(value) + ( (expire == null) ? "" : ("; expires=" + expire.toGMTString()) );
}
function getCookie(Name)
{
var search = Name + "=";
if( document.cookie.length > 0 )
{
offset = document.cookie.indexOf(search);
if( offset != -1 )
{
offset = offset + search.length;
end = document.cookie.indexOf(";", offset);
if( end == -1 )
{
end = document.cookie.length;
}
return unescape( document.cookie.substring(offset, end) );
}
}
}
function storeLogin()
{
if( loginID != null )
{
promptMessage = loginID;
}
var Value = prompt("Enter a Login ID to store:", promptMessage);
if( Value == null )
{
Value = promptMessage;
}
var today = new Date();
var expires = new Date();
expires.setTime( today.getTime() + (365*24*60*60*1000) );
setCookie( "HotMailLogin", Value, expires );
}
// -->
</script>
<title>JavaFILE</title>
<base target="leftframe">
</head>
<!-------------------------------------------->
<!-- HotMail Login ID Storage Program 1.1 -->
<!-- Written and © by Michael Nobilio -->
<!-- June 7, 1998 -->
<!-- [email protected] -->
<!-------------------------------------------->
<!-- Distribute Freely, as long as -->
<!-- this notice is left in the code. -->
<!-------------------------------------------->
<!-- Please notify me of any bugs. -->
<!-- -->
<!-- 1.1 Bug fixes: -->
<!-- * Existing Login ID is now populated -->
<!-- when "Update Login" is clicked. -->
<!-- * Prompt "Cancel" bug fixed. -->
<!-- -->
<!-------------------------------------------->
<body BGCOLOR="#FFFFFF" TEXT="#000000">
<p align="center"><img src="http://www.javafile.com/images/banner.GIF"
alt="banner.GIF (2826 bytes)"></p>
<p align="center">Great script for HotMail users that allows you to access your account
from your HD. <br>
<a href="http://www.javafile.com/javascripts/otherstuff/hotmail.zip">Download the Script</a></p>
<form NAME="passwordform" ACTION="http://207.82.250.251/cgi-bin/start" METHOD="post">
<input type="hidden" name="curmbox" value="ACTIVE"><input type="hidden" name="js"
value="no"><div align="center"><center><table CELLSPACING="0" CELLPADDING="0">
<tr>
<td WIDTH="20"><br>
</td>
<td><div align="center"><center><p><font FACE="arial" SIZE="+2"><b>HotMail</b></font> </td>
</tr>
<tr align="center">
<td WIDTH="15"><br>
</td>
<td><table BORDER="1" CELLSPACING="1" CELLPADDING="10">
<tr>
<td><table CELLSPACING="0" CELLPADDING="0">
<tr>
<td><font FACE="arial" SIZE="-2"><b>Login: </b></font></td>
<td> </td>
<td><font FACE="arial" SIZE="-2"><b>Password: </b></font></td>
<td></td>
</tr>
<tr>
<td><input TYPE="text" NAME="login" SIZE="16" MAXLENGTH="16" onFocus="this.select();"> </td>
<td><br>
</td>
<td><input TYPE="password" NAME="passwd" SIZE="16" MAXLENGTH="16"> </td>
<td ALIGN="center" VALIGN="bottom"> <input TYPE="submit" NAME="enter" VALUE="Enter"> </td>
</tr>
<tr>
<td NOWRAP ALIGN="center" COLSPAN="3"><input TYPE="radio" NAME="frames" VALUE="yes"><font
FACE="arial" SIZE="-3"><i>Frames</i></font> <input TYPE="radio" NAME="frames"
VALUE="no"><font FACE="arial" SIZE="-3"><i>No Frames</i></font> <input TYPE="radio"
NAME="frames" VALUE="auto" checked><font FACE="arial" SIZE="-3"><i>Use my Default</i></font>
</td>
<td><br>
</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
</table>
</center></div>
</form>
<div align="center"><center>
<table WIDTH="450">
<tr>
<td ALIGN="center"><form NAME="storeForm">
<font SIZE="-1"><p><input NAME="saveLogin" TYPE="button" VALUE="Store Login"
onClick="storeLogin(); history.go(0);"></font></p>
</form>
</td>
</tr>
<tr>
<td VALIGN="top" ALIGN="center"><table CELLSPACING="0" CELLPADDING="10">
<tr>
<td ALIGN="center"><font FACE="arial" SIZE="-2">HotMail Login ID Storage Program 1.1<br>
Written and © 1998 Michael Nobilio<br>
<a HREF="mailto:[email protected]">[email protected]</a></font></td>
</tr>
</table>
</td>
</tr>
</table>
</center></div><font SIZE="-1" FACE="arial"><b><i>
<p align="center">DIRECTIONS: Click "Store Login" to save your Login ID.</i></b></p>
<p align="center"><br>
</p>
</font>
</body>
</html>
I'm not going to bother fixing the coding because it either sucks or you used IE to save it. :P
That should work. :)Code:<html>
<head><script LANGUAGE="JavaScript">
<!--
// HotMail Login ID Storage Program
// Written and © by Michael Nobilio
// June 7, 1998
// [email protected]
//
// Distribute Freely, as long as
// this notice is left in the code.
//
// Please notify me of any bugs.
notice = "Click \"Store Login\" to save your Login ID.";
promptMessage = "No Login Stored";
function setCookie(name, value, expire)
{
document.cookie = name + "=" + escape(value) + ( (expire == null) ? "" : ("; expires=" + expire.toGMTString()) );
}
function getCookie(Name)
{
var search = Name + "=";
if( document.cookie.length > 0 )
{
offset = document.cookie.indexOf(search);
if( offset != -1 )
{
offset = offset + search.length;
end = document.cookie.indexOf(";", offset);
if( end == -1 )
{
end = document.cookie.length;
}
return unescape( document.cookie.substring(offset, end) );
}
}
}
function storeLogin()
{
if( loginID != null )
{
promptMessage = loginID;
}
var Value = prompt("Enter a Login ID to store:", promptMessage);
if( Value == null )
{
Value = promptMessage;
}
var today = new Date();
var expires = new Date();
expires.setTime( today.getTime() + (365*24*60*60*1000) );
setCookie( "HotMailLogin", Value, expires );
}
function bookmark()
{
if((navigator.userAgent.toLowerCase()).indexOf("msie")!=-1)
{
window.external.AddFavorite("http://www.your.site.com","Your Site");
}
else
{
alert("This link will work only in Internet Explorer.");
}
}
// -->
</script>
<title>JavaFILE</title>
<base target="leftframe">
</head>
<!-------------------------------------------->
<!-- HotMail Login ID Storage Program 1.1 -->
<!-- Written and © by Michael Nobilio -->
<!-- June 7, 1998 -->
<!-- [email protected] -->
<!-------------------------------------------->
<!-- Distribute Freely, as long as -->
<!-- this notice is left in the code. -->
<!-------------------------------------------->
<!-- Please notify me of any bugs. -->
<!-- -->
<!-- 1.1 Bug fixes: -->
<!-- * Existing Login ID is now populated -->
<!-- when "Update Login" is clicked. -->
<!-- * Prompt "Cancel" bug fixed. -->
<!-- -->
<!-------------------------------------------->
<body BGCOLOR="#FFFFFF" TEXT="#000000">
<a href="javascript:bookmark();">Click here to bookmark this page.</a>
<p align="center"><img src="http://www.javafile.com/images/banner.GIF"
alt="banner.GIF (2826 bytes)"></p>
<p align="center">Great script for HotMail users that allows you to access your account
from your HD. <br>
<a href="http://www.javafile.com/javascripts/otherstuff/hotmail.zip">Download the Script</a></p>
<form NAME="passwordform" ACTION="http://207.82.250.251/cgi-bin/start" METHOD="post">
<input type="hidden" name="curmbox" value="ACTIVE"><input type="hidden" name="js"
value="no"><div align="center"><center><table CELLSPACING="0" CELLPADDING="0">
<tr>
<td WIDTH="20"><br>
</td>
<td><div align="center"><center><p><font FACE="arial" SIZE="+2"><b>HotMail</b></font> </td>
</tr>
<tr align="center">
<td WIDTH="15"><br>
</td>
<td><table BORDER="1" CELLSPACING="1" CELLPADDING="10">
<tr>
<td><table CELLSPACING="0" CELLPADDING="0">
<tr>
<td><font FACE="arial" SIZE="-2"><b>Login: </b></font></td>
<td> </td>
<td><font FACE="arial" SIZE="-2"><b>Password: </b></font></td>
<td></td>
</tr>
<tr>
<td><input TYPE="text" NAME="login" SIZE="16" MAXLENGTH="16" onFocus="this.select();"> </td>
<td><br>
</td>
<td><input TYPE="password" NAME="passwd" SIZE="16" MAXLENGTH="16"> </td>
<td ALIGN="center" VALIGN="bottom"> <input TYPE="submit" NAME="enter" VALUE="Enter"> </td>
</tr>
<tr>
<td NOWRAP ALIGN="center" COLSPAN="3"><input TYPE="radio" NAME="frames" VALUE="yes"><font
FACE="arial" SIZE="-3"><i>Frames</i></font> <input TYPE="radio" NAME="frames"
VALUE="no"><font FACE="arial" SIZE="-3"><i>No Frames</i></font> <input TYPE="radio"
NAME="frames" VALUE="auto" checked><font FACE="arial" SIZE="-3"><i>Use my Default</i></font>
</td>
<td><br>
</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
</table>
</center></div>
</form>
<div align="center"><center>
<table WIDTH="450">
<tr>
<td ALIGN="center"><form NAME="storeForm">
<font SIZE="-1"><p><input NAME="saveLogin" TYPE="button" VALUE="Store Login"
onClick="storeLogin(); history.go(0);"></font></p>
</form>
</td>
</tr>
<tr>
<td VALIGN="top" ALIGN="center"><table CELLSPACING="0" CELLPADDING="10">
<tr>
<td ALIGN="center"><font FACE="arial" SIZE="-2">HotMail Login ID Storage Program 1.1<br>
Written and © 1998 Michael Nobilio<br>
<a HREF="mailto:[email protected]">[email protected]</a></font></td>
</tr>
</table>
</td>
</tr>
</table>
</center></div><font SIZE="-1" FACE="arial"><b><i>
<p align="center">DIRECTIONS: Click "Store Login" to save your Login ID.</i></b></p>
<p align="center"><br>
</p>
</font>
</body>
</html>
okay thanks so i just enter that into a paragraph and it should make it all work :)
thanks for the help ;)
Peerzyboy :cool2:
NP. :)
Back to "adding paragraphs" again :lol: :lol: :lol:
it worked by adding a paragraph ha! ;)
thnx everyone!
Peerzyboy :cool2:
You have NO idea do you ? :lol: