Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Passing form values in ASP on CD-ROM?

Status
Not open for further replies.

mechro99

Programmer
Nov 27, 2001
54
US
Hi,

I need to build a CD-ROM that allows users to enter personal information into a form, print out the information and save the information.

The only way I could think to do this is through an ASP form, but I don't know if there's a way to make ASP work when running it from a CD and without an internet connection.

I'm not really that familiar with programming, but I've worked with ASP a little. Can anyone point me in the right direction for accomplising this task? Any tutorials? Am I asking in the right place?

Thanks,
Dan
 
You're better off trying to do it clientside (e.g. with Javascript), that way it can run locally and store the data in an XML file (or whatever you fancy), and print using the document.print method etc. ASP is a server side solution (Active Server Pages), hence it doesn't really work on a users pc without installing a webserver.

You need to be cautious of security restrictions though, almost all browsers will be sensitive of any local file manipulation or unsigned script execution.

Here is a link to the 'HTA' method for MSIE browsers...

There are plenty of other methods, but if you want a browser solution then the above will get you started.



A smile is worth a thousand kind words. So smile, it's easy! :)
 
Thanks for the start. I've also read a tiny bit about Visual Basic. Would that be a good place to look as well?

-Dan
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top