Vincent,
1. In my web application, can I call another exe application ?
eg. when user click a button, a.exe will be executed
If you call a .exe from a web server the .exe will be executed on the
web server not the client machine.
You would need to use an active x control in order to execute a .exe
2. If the web page has two frames, can I control them in asp.net ?
ie. control the page displaying in the frame
Yes, I've done this myself. You may use javascript on the client side to
refer to one frame from another:
document.[framename].location='
http://msdn.microsoft.com'
You may also add that javascript dynamically to the page using various
page object's Attributes methods.
3. Can I call DTS ?
I've actually done this myself. SQL server was recently locked down a
bit more to make calling a DTS remotely more difficult. I ended up using a
serviced component to do so. If you need advice on exactly how to do this
feel free to email me (Anyone).
4. Can I save as a crystalreport as pdf and directly
print it when user click a button in my web application ?
Yes, but you won't be able to print the saved file, you will be able to
send the user a pdf and they may print it using the normal pdf interface.
I haven't done a few of these things myself, but I'm pretty certain of my
answers. Anyone who knows differently or has a little more detail please
help us out.
Thanks,
--
S. Justin Gengo, MCP
Web Developer
Free code library at:
www.aboutfortunate.com
"Out of chaos comes order."
Nietzche
Vincent said:
1. In my web application, can I call another exe
application ?
eg. when user click a button, a.exe will be executed
2. If the web page has two frames, can I control them in
asp.net ?
ie. control the page displaying in the frame
3. Can I call DTS ?
4. Can I save as a crystalreport as pdf and directly
print it when user click a button in my web application ?
Thank you very much for your help