Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
1 Commented Post
0 Endorsements
Ranked #10.5K
Ranked #4K
~5K People Reached
Favorite Tags

13 Posted Topics

Member Avatar for Dani
Member Avatar for sabin

You must to use either server script languages such as ASP/PHP here is a PHP example [URL]http://www.tutorialguide.net/php_contact_form_tutorial.html[/URL] here is a ASP example [URL]http://www.tizag.com/aspTutorial/aspFormsEmail.php[/URL] or you can use just form with target mailto to force send the email in Outlook, but server side scripting is better. [CODE] <form enctype="text/plain" method="get" action="mailto:[email protected]"> …

Member Avatar for macneato
0
104
Member Avatar for php_coder
Member Avatar for digital-ether
0
2K
Member Avatar for thirunavukaras

This is question for ASP.NET not for Javascript.. [URL]http://www.daniweb.com/techtalkforums/forum18.html[/URL]

Member Avatar for MidiMagic
0
120
Member Avatar for vssp

Hi VSSP, use something like this ;) [CODE] <script> function Validate(id) { var list=document.getElementById(id).value.split(','); for (y=0; y<list.length; y++) alert('Validate this email:'+list[y]); } </script> <input type="text" name="email" id="email" value="[email protected],[email protected]"> <input type="button" value="Validate" onclick="Validate('email');"> [/CODE]

Member Avatar for vssp
0
97
Member Avatar for himanjim

Himanjim, remember that you cannot connect to another domain using AJAX in Mozilla based browsers, so you can use just relative path of request like '/test/file.php'.. :)

Member Avatar for smalldog
-1
250
Member Avatar for anitha2324

Forget about HTML, HTML is not programming language, if you are using ASP do that in ASP, easy help.

Member Avatar for Phaelax
0
160
Member Avatar for enggars

Use this [quote] for(i=1;i<3;i++){ document.getElementById('hidsum'+i).checked or .value ... } [/quote] Instead of [quote] document.form1.hidsum[i][/quote] and don't forget define id (hidsum1,hidsum2..)

Member Avatar for MidiMagic
0
149
Member Avatar for okparrothead

Hi Parrot :), you can try this code, but I don't know if that will work :) Just place everything on the page to "hide" div and instruction section place to print div. [code] <style media="print"> .hide {display:none} .print {display:block;} </style> <script> function Print() { document.getElementById('hide').className = 'hide'; window.print(); } …

Member Avatar for okparrothead
0
97
Member Avatar for bondi007

Hi Bondi ;) Perhaps the simplest way is, upload it to [URL="http://www.youtube.com"]www.youtube.com[/URL], and then paste their HTML code to your blog. Visit for example this url [URL]http://www.youtube.com/watch?v=sIoZ0J7x1Cg[/URL] And look at "Embed" section..

Member Avatar for bondi007
0
103
Member Avatar for Juggler
Member Avatar for jbennet
0
185
Member Avatar for vssp
Member Avatar for rariti

Hi rariti, Yes I think I can help you.. :) that reason is your CSS file is served with text/plain Content-type header not with text/css, which is needed. It's a problem of your web server configuration.

Member Avatar for rariti
0
202

The End.