Hi,
I am ridirecting page to vbs file.
File is running properly but it is asking user to open/save the file.
But i want that it should run without any dialouge box.
My code is :
<%@language="vb script" %>
<% dim a
a=request.form( "sometextbo x")
if a="" then
%>
<html>
<body>
--------some code -------
</body>
</html>
<%
else
response.redire ct("file.vbs")
end if
%>
It is first asking me to open or save the file.
If i click "open" then it asks to run or don't Run
But i want it to run directly without any user input.
Can anyone help me in this issue.
Thanks in advance.
Anu
I am ridirecting page to vbs file.
File is running properly but it is asking user to open/save the file.
But i want that it should run without any dialouge box.
My code is :
<%@language="vb script" %>
<% dim a
a=request.form( "sometextbo x")
if a="" then
%>
<html>
<body>
--------some code -------
</body>
</html>
<%
else
response.redire ct("file.vbs")
end if
%>
It is first asking me to open or save the file.
If i click "open" then it asks to run or don't Run
But i want it to run directly without any user input.
Can anyone help me in this issue.
Thanks in advance.
Anu
Comment