C# Interoperability with Websites

  • Thread starter Thread starter garyusenet
  • Start date Start date
G

garyusenet

Hi I am just finding my feet with C# and it's a rewarding path.

I am writing a windows form application in C#.

I know nothing about web programming. Is there a straightforward way of
me porting my form application onto a website so I can use it remotely?

It's basically an organiser type programme i'm writing and it would be
nice if i could use it at the office and at home so I thought using it
across the net would be ideal.

If there isn't a straightforward way of 'porting' it into a web
application. What would you reccomend I write it in?

Thankyou,

Gary.
 
Hi,

You can just place your winform application on the wwwroot and given enough
access previllages (give every one full access to see the function first),
then you can remotely load the application using IE,

type the URL as http://<my machine IP>/<myapp.exe>
This will load the application to your client directly..

There are few issues..
1. You may not be able to use the browser control COM object in your form \
2. All file access should be done using UNC paths
etc

Nirosh.
 
Hi I don't run my own webserver will this still work if I upload the
program into my hosting account with my domain name?
 
yes.. I think as long as you can reach the app remotely.. you should be
fine..

just have a go at it and see..

You may also find some artcile on this topic on the net too..

Nirosh.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top