Forum: HTML and CSS Jun 2nd, 2007 |
| Replies: 4 Views: 1,475 You must to use either server script languages such as ASP/PHP
here is a PHP example http://www.tutorialguide.net/php_contact_form_tutorial.html
here is a ASP example... |
Forum: PHP May 21st, 2007 |
| Replies: 11 Views: 7,313 Do as php_IND said, but use this code rather:
<?php ob_start("ob_gzhandler"); ?> |
Forum: JavaScript / DHTML / AJAX May 21st, 2007 |
| Replies: 9 Views: 20,733 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'.. :) |
Forum: JavaScript / DHTML / AJAX May 21st, 2007 |
| Replies: 2 Views: 11,288 Hi VSSP, use something like this ;)
<script>
function Validate(id) {
var list=document.getElementById(id).value.split(',');
for (y=0; y<list.length; y++)
alert('Validate this... |
Forum: JavaScript / DHTML / AJAX May 18th, 2007 |
| Replies: 7 Views: 6,159 This is question for ASP.NET not for Javascript..
http://www.daniweb.com/techtalkforums/forum18.html |
Forum: IT Professionals' Lounge May 17th, 2007 |
| Replies: 77 Views: 30,182 |
Forum: HTML and CSS May 15th, 2007 |
| Replies: 2 Views: 3,199 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.
<style media="print">... |
Forum: HTML and CSS May 15th, 2007 |
| Replies: 5 Views: 4,876 Forget about HTML, HTML is not programming language, if you are using ASP do that in ASP, easy help. |
Forum: HTML and CSS May 15th, 2007 |
| Replies: 15 Views: 2,538 Hi Bondi, you can use this code in your HTML to play your SWF but automatically :) so the best solution is Youtube anyway I think.
<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"... |
Forum: HTML and CSS May 14th, 2007 |
| Replies: 4 Views: 5,100 That is not possible, you must use server side script includes Juggler. |
Forum: HTML and CSS May 14th, 2007 |
| Replies: 5 Views: 2,290 If you want to pass values from pop up window to "old" opener window, may be this code is what you want:
test.html:
<script>
function openwindow()
{
window.open('popup.html',"mywindow");... |
Forum: HTML and CSS May 14th, 2007 |
| Replies: 5 Views: 2,290 Sorry VSSP but I just don't understand what do you mean by pass the values new page to old page.. Can you explain that? |
Forum: HTML and CSS May 14th, 2007 |
| Replies: 5 Views: 2,290 |
Forum: HTML and CSS May 13th, 2007 |
| Replies: 15 Views: 2,538 Ok.. and how is it possible that you have your video in swf format and not for example in avi format? :) |
Forum: HTML and CSS May 13th, 2007 |
| Replies: 5 Views: 2,840 Rariti, your IP 64.182.44.206 is running Apache web server, right? And I am just telling you, this web server is wrong configured, because returns text/plain Content-type header for CSS file instead... |
Forum: HTML and CSS May 13th, 2007 |
| Replies: 15 Views: 2,538 Hi bondi ;) , just convert your video to mpg and upload it to Youtube as I said... :)
Youtube accepts video files from most digital cameras, camcorders, and cell phones in the .WMV, .AVI, .MOV, and... |
Forum: HTML and CSS May 12th, 2007 |
| Replies: 5 Views: 2,840 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... |
Forum: HTML and CSS May 11th, 2007 |
| Replies: 15 Views: 2,538 Hi Bondi ;)
Perhaps the simplest way is, upload it to www.youtube.com (http://www.youtube.com), and then paste their HTML code to your blog.
Visit for example this url... |
Forum: JavaScript / DHTML / AJAX May 11th, 2007 |
| Replies: 9 Views: 2,324 the reason is, you need probably count from 1 not from 0 like this: |
Forum: JavaScript / DHTML / AJAX May 11th, 2007 |
| Replies: 9 Views: 2,324 Use this
Instead of
and don't forget define id (hidsum1,hidsum2..) |