Newbie: How to make C# Windows App to Web

  • Thread starter Thread starter Steve Kloehr via .NET 247
  • Start date Start date
S

Steve Kloehr via .NET 247

I have looked everywhere but no luck for this. Please help.
I verified that .NET works on a site that I have hosted with some.NET code and viewed the page. This originated as a .aspx file.

My problem is that I have a c# Windows project that is completedand I want to put this on this site. Can I add the .exe file andsimply call it or do I need to make a class with a dll and callthat? Is this even possible without having to recode everything?I added the c# project to a ASP.NET Web project with anIndex.aspx

The c# Windows project file that starts is MainForm.cs.

I know, I'm lost but I thought with .NET you code once and run ona mobil device or Web.

Thank you for any help.
 
Steve,

You can place the EXE on the site, and when the link is accessed, it
will be started on the client machine. However, your app will run with
extremely limited permissions, which is something you should either code for
or you should have the end user adjust the security settings to give you the
appropriate rights.

Hope this helps.


--
- Nicholas Paldino [.NET/C# MVP]
- (e-mail address removed)

I have looked everywhere but no luck for this. Please help.
I verified that .NET works on a site that I have hosted with some .NET code
and viewed the page. This originated as a .aspx file.

My problem is that I have a c# Windows project that is completed and I want
to put this on this site. Can I add the .exe file and simply call it or do
I need to make a class with a dll and call that? Is this even possible
without having to recode everything? I added the c# project to a ASP.NET Web
project with an Index.aspx

The c# Windows project file that starts is MainForm.cs.

I know, I'm lost but I thought with .NET you code once and run on a mobil
device or Web.

Thank you for any help.
 
Back
Top