From vb.net code to asp.net code

Snosky

Member
Joined
Dec 28, 2005
Messages
17
Programming Experience
1-3
I have a vb.net program..is it possible to generate that code to asp.net (or php but I doubt it (= non-microsoft))code?

thanx in advance!
 
There is always a point at which we want to bring our application/s to web and of course it is possible to make the same for the asp.net as well as PHP. Be aware that you cannot do that through some wizards or something but you'd have to re-code the app but now with less effort as you already have the vb.net code. All you need is to make a web forms instead winForms and add adequate web controls (equivalents) at the place of windows controls. Notice that you will not have such luxury like you have through developing winforms but lucky us vb.net allows you to make own custom control by your needs and taste. All this is valid for PHP except that you if you decide to go for PHP you would have to re-write all the code as it doesn't recognize vb.net code but rather this module (PHP) has own language on server side.


HTH
Regards ;)
 
Back
Top