|
| |||||||||
| Tags: html, insert, internet explorer, javascript, mozilla, script, vbscript |
![]() |
| | Thread Tools | Search this Thread |
|
#1
| ||||
| ||||
| Problems Inserting a VBScript into HTML Page?
Hi Friends, I am having problem while inserting scripts into a HTML page. I want to know the method that can insert script into HTML. I can use any scripts like JavaScript or VBScript. Please explain me how to insert a script into HTML Page? If possible please provide the sample of the coding using the same. No matter which script you are giving in example, from that I will get the idea of using the another script into HTML page.!
__________________ Signatures reduce available bandwidth Last edited by Viensterrr : 29-01-2010 at 04:59 PM. |
|
#2
| ||||
| ||||
| Re: How to Insert a Script into HTML Page?
Normally you add scripts to HTML pages to make them more dynamic and interactive. I have given you the coding for inserting a script into HTML Page, so that you can understand it more better. The script that I have used is VBScript. So you can adjust it accordingly, if you want another script. Here is coding for that : Code: <html>
<body>
<script type="text/vbscript">
document.write("Hello World!")
</script>
</body>
</html> The script above will produce this output: Code: Hello World! |
|
#3
| ||||
| ||||
| Re: How to Insert a Script into HTML Page?
Extremely Thanks 'Allan.d', for providing the help. Actually it worked for me. But when I am trying to run this script on my Office's system, its not working properly. I think that the browser is not supporting the <script> tag. You think that this is possible..??? You think that something is wrong with my browser.? Please help me soon as I have to work on that system.!
__________________ Signatures reduce available bandwidth |
|
#4
| ||||
| ||||
| Re: How to Insert a Script into HTML Page?
I think that there is something wrong with your browser. You have not mentioned which browser you are using.?! If you are using the Mozilla or other browser, other than the Internet Explorer, then I would like to suggest you to use the Internet Explorer. Many times it happens with the other browser due to the issue of the compatibility. And if this error is coming on Internet Explorer, then try to reinstall that browser. Install the updated version of the browser. Because I have used the script tag in number of machines, but I never got an issue mentioned by you. The script tag is definitely supported by Internet Browser but I don't know about the others. Hope that this methods will sort out your problem. |
|
#5
| |||
| |||
| Re: How to Insert a Script into HTML Page?
Sometimes it happens that your browser doesn't recognize the <script> tag. Also sometimes it happens that it supports the <script> tag but do not support the script inside. In such scenario you would have to use the <noscript> tag to define an alternate text if a script is NOT executed. However, if a browser supports the script inside the <script> tag it will ignore the <noscript> tag. Code: <script type="text/vbscript">
<!--
document.write("Hello World!")
'-->
</script>
<noscript>Your browser does not support VBScript!</noscript> |
![]() |
|
| Thread Tools | Search this Thread |
| |
Similar Threads for: "Problems Inserting a VBScript into HTML Page?" | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| How to add VBScript code in a page | Aahlaadith | Software Development | 6 | 30-11-2010 12:38 AM |
| How to interaction VBScript and JScript in ASP page | Lawford | Software Development | 5 | 06-03-2010 04:50 AM |
| How to embed a WMV into an html page | Ameyaa | Software Development | 2 | 19-05-2009 11:37 AM |
| page's HTML preload | screwball | Software Development | 5 | 24-09-2008 06:56 PM |
| !!! vbScript Output to an HTML File !!!!! | Ahmed H. Habashy | Windows Server Help | 2 | 28-11-2006 02:49 PM |