473,656 Members | 2,871 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Several Questions

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
Nov 17 '05 #1
2 2330
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" <kc****@csis.hk u.hk> wrote in message
news:38******** *************** *****@phx.gbl.. .
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

Nov 17 '05 #2
Vincent,

I thought I'd post the same reply as I sent you by email here in the forum
in case anyone else wanted to know how to run a DTS package from their code.

I placed the information on my web site in the code library so others may
benefit from it also. Just go to www.aboutfortunate.com the title is: "Run a
SQL Server 2000 DTS Package from a web service". If you set the category
option to: "Web or Windows" it should show up as the first entry in the
datagrid.

Again, if you have questions about it, don't hesitate to email me.

(This is a long one.)

Sincerely,

Justin
--
S. Justin Gengo, MCP
Web Developer

Free code library at:
www.aboutfortunate.com

"Out of chaos comes order."
Nietzche
"S. Justin Gengo" <sj*****@aboutf ortunate.com> wrote in message
news:%2******** ********@TK2MSF TNGP11.phx.gbl. ..
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" <kc****@csis.hk u.hk> wrote in message
news:38******** *************** *****@phx.gbl.. .
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


Nov 17 '05 #3

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
1784
by: michela rossi | last post by:
Hi, Don't know if anyone can help me. I've got the following questions: 1. Does anyone know of anywhere that offers shared webspace which has support for Java/JSP? Ideally running Tomcat? 2. Is there any driver/support in JSP for writing to a text file? E.g. a website that receives many thousand submissions/day via a feedback form - rather than simply send emails, desire is to put them all into one text file per day then email that...
1
1319
by: Ayende Rahien | last post by:
I'm storing my data inside an XML file, the data is divided into several niches. I expect two things to happen during normal use of the application: A> Number of niches to grow. B> Amount of information in niche would grow. This would result in one big file, it's not too much trouble to change it now to mutliply files, the question is what would be better from design and performance perspective? Several other questions:
9
1305
by: eitan | last post by:
Hello, I am using Microsoft Visual Studio 2003 .NET. I have several question, please. 1) I have a connection to the database, which I create it at login, by application("conMain") (I have some problems by using session("conMain"), see question 2). I don't know if it's a good thing to do, and not oppenning at each page the
1
221
by: Joe | last post by:
Dear all, I have many questions, please help! 1.) If i use the backup/restore function in the IIS, does the backup includes only the register and settings of web sites in the IIS only, or does it include the file together? 2.) If i create a web sites have several hundred of static html pages, however all the pages need to check whether the user is login or not , if not, it will redirect to login page. For this, I think to create a aspx...
1
263
by: Ayende Rahien | last post by:
I'm storing my data inside an XML file, the data is divided into several niches. I expect two things to happen during normal use of the application: A> Number of niches to grow. B> Amount of information in niche would grow. This would result in one big file, it's not too much trouble to change it now to mutliply files, the question is what would be better from design and performance perspective? Several other questions:
0
8382
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8717
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
8498
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8600
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
7311
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
5629
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4150
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
2
1930
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
2
1600
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.