- Home
·
- Miscellaneous
·
- Client side scripting showing information in client-side scripting without using Msgbox of vbscript
Client side scripting showing information in client-side scripting without using Msgbox of vbscript
Client side scripting showing information in client-side scripting without using Msgbox of vbscript and alert of the javascript
API Declarations
the code uses the methods of the component "wscript.Shell"
this component has a method called "popup"
the syntax is popup (text,secondstowait,title,type)
Rate Client side scripting showing information in client-side scripting without using Msgbox of vbscript
(2(2 Vote))
<script language="vbs">
dim str1,str
set obj =createobject("wscript.Shell.1")
obj.Popup "Welcome to VBScript",1,"Hello"
</script>
Javascript Example
<script language ="javascript">
var obj
obj = new ActiveXObject("Wscript.Shell.1")
obj.Popup("Welcome From Javascript",1,"Hello");
</script>
Client side scripting showing information in client-side scripting without using Msgbox of vbscript Comments
No comments yet — be the first to post one!
Post a Comment