URGENT:Displaying a Web Page in a Windows C# forms application

  • Thread starter Thread starter Mustafa Rabie
  • Start date Start date
M

Mustafa Rabie

Dear All,

i have a web application that registers my users to my site, i have a SQL
backend and a webservice to interact with SQL.
I need to write a WINDOWS FORMS APPLICATION using C# to register the users.
Something like the MSN Explorer setup & register application.
In other words a Window that would open up, call my Registeration URL and
takes the user through out the registeration wizard.
I tried using the axWebBrowser control, it displays the page with the
vertical scroll bar although i have autoscroll turned off. So is there
another way to do it? or maybe turn off the scroll bar permenentaly?

Thanks for your help
Mustafa
 
Hi,

There is several way to do it, you can write your code using
"WebRequest.Create()" call your url but you need to parse the result to make
sure that it is registered correctly, or a better way is to implement a web
service that do the registeration, than call this web service through you
winform application and your web application, so you will have your
authentication and authorization code in the web service common to both the
web interface and the client interface.

Regards,
Emad
 
Yeah i already have web service that handles all that. WebRequest will run
the URL but will not open the page. i just want to have the interface via a
web page that runs on the server, but i display it on a windows form.
i'm using browser control currently, but i need to just display the page
without the scroll bars etc
thanks
mustafa
 
Back
Top