Could somebody give me an example please?

  • Thread starter Thread starter Chuck Rewood
  • Start date Start date
C

Chuck Rewood

Hi,
I am new in .NET and I'd like to build and application which control user's
device.

I've made a C# Windows application project that controls and run one of our
POS device.
Since I believe that .NET is making the way easier to web-enabled
application, then I try
to create application that control/run POS device on client's computer and
send the
result to the server.
However, I don't know what to do.
Could anybody here explain (in this forum or privately or even show me link
tutorial) on
how can I create such application ? (My C# Windows application is ready and
functional
and I want to integrate it with browser)

I am very new in this field and need your guidance.

Regards,

Chuck Rewood
 
There are a ton of ways you can do this, from creating control to access
your forms as control in a web broswer. But this will limit you to IE 5.5
plus. Or you can put your assemblies in the GAC and access are you business
logic from a C# web application. Or if you want to you can use remoting
from the web server to the central application server.
You'll have to review all the senarios and compatibility before looking at
any code.

Once you've decided , I'd strongly suggest taking a look at "Developing
ASP.NET Server Controls and Components" by Nikhil Kothari published by
Microsoft Press.

Hope this helps

Nick Harris, MCP, CNA, MCSD
Director of Software Services
http://www.VizSoft.net
 
Back
Top