Comments
-
a
d
-
How to read HTML page source code using JavaScript or VBScript?
hi did u find a way? im looking for the same stuff
-
Cookies in JavaScript
To remove a cookie, you would set the expirey date to a time in the past (it's self-explanitory) new Date(new Date().getTime() - (3600))
Need any more help? email me. digimonfan851@gmail.com
-
Hello
This forum used to be very popular many years ago, but things died down a little during my university escapades :(
I will create a separate forum for general chat at some point, but for now you're welcome to post anything on here...
-
Cookies in JavaScript
To delete the we need to reload the browser... Is there any option that will delete/remove cookie without refreshing the browser?
-
Hello
ooh can't spell, "learn" a little
-
Hello
tee hee
surely Don't Panic is only written on THHGTTG? My computer certaintly doesn't say that... yet!
So I'm not big on geekery ^-^ though perhaps I might like to be! Maybe if I hang out here I might lean a little. Is there a forum where we can meet other people and chat, or is this purely an information based site?
-
regarding implement java applet
I'm looking for any information about <b>XRUMER software</b>. Can you help me? Or give me a link to the official site with this sofware.
Thanks
-
Cookies in JavaScript
You'll want to use an expiry date of something like:
new Date(new Date().getTime() + (30*24*60*1000))to make the cookie expire 30 days in the future.
-
Cookies in JavaScript
Hi there,
I've built a form for peolpe to submit a vote and I thought the best way to restrict people voting twice would be to create a cookie called "voted" and set the value to 1 when they vote.
When the page loads I want it to check for the cookie to see if that person has voted or not.
I copied your script and it works great. I can create a cookie called Voted with a value of 1, but how can I set an expiry date of say.. December on the cookie? I can't seem to work it out. Thanks a lot! Tom
-
Cookies in JavaScript
Really helpful!
-
Cookies in JavaScript
It is very nice to share knowledge
-
test
-
korean letters in html
Hi my boyfriend is half korean and loves the phrase "To hell with hereos" we both have appointments to get tattoos tomorrow saterday the 26th and he wants that phrase tattooed in korean lettering. I have been looking every where to try and find a translation and have been quite unsucessful, could you at all possible e-mail me the translation? It would be much appreciated, thank you for your time.
Sincerely, Jessicca -
JNI question!
Step 1. Complie your java source code
like C:\JNITest\test>javac test.java
then you check in your test folder,
one class i.e. test.class is created.Step 2. C:\JNITest\test>javah -jni test
execute this command then you check your test folder, you will get test.h file there.Setp 3.C:\JNITest\test>cl -Ic:\jdk\include -Ic:\jdk\include\win32 -LD Sample1.c -FeSample1.dll
Then you will get Sample1.dll in your folder.
Step 4. Run the Java code
C:\JNITest\test>java test