Link to home
Start Free TrialLog in
Avatar of GlobaLevel
GlobaLevelFlag for United States of America

asked on

web service to to take user info from asp.net page and pass to vb.net

the user types info into a asp.net web page and those parameters need to be  passed to a vb.net app.

asp.net page programmatically edits a .vb file in vb.net app:

Is there a way to programmatically edit a .vb file from asp.net web page...I need to
-pass several parameters fromthe asp.net to the vb.net
-then compile the vb.net into an .exe with a special name
-and transfer to a folder

I dont care how its done..I can have a vbscript inthe vb.net app and have the asp.net pass parameters into the vbscript that writes to the vbscript in the vb.net app..and a function in the vb.net app call the parameters from the vbscript in the vb.net..

any ideas???
ASKER CERTIFIED SOLUTION
Avatar of thepanch
thepanch

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of GlobaLevel

ASKER

yes, I am trying to define several parameters in a vb.net function...server_name..the user enters the name of the server in a asp.net and it gets passed to a vb.net app so that it can run...
Avatar of thepanch
thepanch

can pls explain the problem you are triying to solve, maybe there is a better way to solve it :D
the user goes to a asp.net and types in the nameof their server....it automatically feeds into a vb.net and passes the server name to the vb.net...then soemthing??? programmatically compiles the vb.net custom into a folder where the user will have alink to download to that server...inside that vb.net is the server name so that when they run it locally it has the info it needs to run data back to the remote db to fill in the sql table with the personal info...does this help?