C# to ASP.net

  • Thread starter Thread starter Relaxin
  • Start date Start date
R

Relaxin

I'm new to .NET, but was wondering if a C# application could easily be
converted to a ASP.NET or Web application?

Thanks
 
Majority of can easily be implemented in ASP.NET...

only real problems you might run across are some controls that only work in
a windows form as opposed to a web form.

I move code from windows foms to web forms all the time...its the same
language..interacting with the UI is the only real difference
 
You can use "code behind" to build your ASP.NET application, however you can
not "transform" WinForms to WebForms any generic way
 
Back
Top