- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 0
- Posts with Upvotes
- 0
- Upvoting Members
- 0
- Downvotes Received
- 1
- Posts with Downvotes
- 1
- Downvoting Members
- 1
13 Posted Topics
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]"> …
Do as php_IND said, but use this code rather: [CODE] <?php ob_start("ob_gzhandler"); ?> [/CODE]
This is question for ASP.NET not for Javascript.. [URL]http://www.daniweb.com/techtalkforums/forum18.html[/URL]
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]
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'.. :)
Forget about HTML, HTML is not programming language, if you are using ASP do that in ASP, easy help.
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..)
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(); } …
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..
That is not possible, you must use server side script includes Juggler.
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.
The End.
smalldog