Click here to Skip to main content
15,891,423 members
Home / Discussions / Web Development
   

Web Development

 
GeneralRe: Multi File Downloads Pin
No-e20-Feb-07 10:30
No-e20-Feb-07 10:30 
GeneralRe: Multi File Downloads Pin
badgrs21-Feb-07 0:46
badgrs21-Feb-07 0:46 
Questionvbs file include Pin
Sachin Pimpale19-Feb-07 22:53
Sachin Pimpale19-Feb-07 22:53 
AnswerRe: vbs file include Pin
Christian Graus19-Feb-07 22:56
protectorChristian Graus19-Feb-07 22:56 
GeneralRe: vbs file include Pin
Sachin Pimpale19-Feb-07 22:58
Sachin Pimpale19-Feb-07 22:58 
GeneralRe: vbs file include Pin
Christian Graus19-Feb-07 23:03
protectorChristian Graus19-Feb-07 23:03 
GeneralRe: vbs file include Pin
andyharman20-Feb-07 0:31
professionalandyharman20-Feb-07 0:31 
AnswerRe: vbs file include Pin
andyharman20-Feb-07 0:26
professionalandyharman20-Feb-07 0:26 
If you need to include a VBScript file into your web page (to run in your browser then use:
<script src="Inc/global.vbs" language="VbScript"> </script>
However, you should really be using JavaScript if you want users to use anything other than IE. If you need to include a VBScript file into your ASP page (to run on your web server) then use:
<!--#include file="Inc/GenScreen.asp" -->
If you are using CScript.exe to run VBS on your desktop then use:
<?xml version="1.0" standalone="yes"?>
<?job error="false" debug="false"?>
<package>
<job id="main">
<reference guid="00000205-0000-0010-8000-00AA006D2EA4"/>
<reference object="Scripting.FileSystemObject" />
<script language="vbscript" src="Utils.vbs"/>
<script language="vbscript">
<![CDATA[

'Your script goes here.

]]>
</script>
</job>
</package>
If you want to get reeeeeeally frisky then you can use VBScript to create WSC COM components!!! VBScript rocksCool | :cool:

Hope that helps.
Andy
QuestionData grid! Pin
nclauder19-Feb-07 22:50
nclauder19-Feb-07 22:50 
AnswerRe: Data grid! Pin
Christian Graus19-Feb-07 23:02
protectorChristian Graus19-Feb-07 23:02 
AnswerRe: Data grid! Pin
sathesh pandian20-Feb-07 19:34
sathesh pandian20-Feb-07 19:34 
QuestionRe: Data grid! Pin
nclauder20-Feb-07 19:51
nclauder20-Feb-07 19:51 
AnswerRe: Data grid! Pin
Vipin.d20-Feb-07 22:13
Vipin.d20-Feb-07 22:13 
QuestionPrinting Table Pin
Mr.Sam19-Feb-07 17:19
Mr.Sam19-Feb-07 17:19 
AnswerRe: Printing Table Pin
Ankur.Bakliwal19-Feb-07 17:27
Ankur.Bakliwal19-Feb-07 17:27 
GeneralRe: Printing Table Pin
Mr.Sam19-Feb-07 17:55
Mr.Sam19-Feb-07 17:55 
GeneralRe: Printing Table Pin
Ankur.Bakliwal19-Feb-07 18:20
Ankur.Bakliwal19-Feb-07 18:20 
AnswerRe: Printing Table Pin
Bradml19-Feb-07 18:27
Bradml19-Feb-07 18:27 
AnswerRe: Printing Table Pin
Ankur.Bakliwal19-Feb-07 18:35
Ankur.Bakliwal19-Feb-07 18:35 
GeneralRe: Printing Table Pin
Mr.Sam19-Feb-07 19:06
Mr.Sam19-Feb-07 19:06 
Questionword library reference in visual web dev Pin
jnstaub19-Feb-07 5:25
jnstaub19-Feb-07 5:25 
QuestionHow to get output in ASP from output parameter of SP Pin
Ankur.Bakliwal19-Feb-07 1:42
Ankur.Bakliwal19-Feb-07 1:42 
AnswerRe: How to get output in ASP from output parameter of SP Pin
andyharman19-Feb-07 3:12
professionalandyharman19-Feb-07 3:12 
QuestionHelp for array in Javascript!!! Pin
hiral_shah18-Feb-07 23:38
hiral_shah18-Feb-07 23:38 
AnswerRe: Help for array in Javascript!!! Pin
Bradml18-Feb-07 23:56
Bradml18-Feb-07 23:56 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.