Rather than recreate my entire form, I would like to import the controls from my vb form to my asp page. Is this possible. Are there conversion utilities available for the code?
Printable View
Rather than recreate my entire form, I would like to import the controls from my vb form to my asp page. Is this possible. Are there conversion utilities available for the code?
No...
The only remotely close way of doing so is to use a .Net applet, which entails developing your form inside of a usercontrol, compiling it within a .Net dll, and then adding that to a webform in your web app.
.Net applets only work in IE5.5 or higher, and only if the person viewing your site has the .Net framework installed on their machine.
There is no easy conversion process. You will have to learn how to make a .Net web app. You will find many similiarities however to ease your pain.