winforms-to-web

Tips for developing on WinForms thinking on a future Web developing

We are developing/mantaining an enterprise application which for historical reasons and development speedup it was targered for WinForms. Now we are thinking that sooner or later (more sooner than later) that application will need to be Web based. Thinking on the "to-Web" movement. Which are the most important things we have to consid...

How to submit bugs to BugTracker.NET from C# application?

Reading the documentation page of BugTracker.NET BugTracker.NET API Documentation I realized that I need to use GET or POST which, I have to admit, I'm not very good at. I was wondering: Is there a library that could be used to easily submit bugs to BugTracker.NET from a C# application (or VB.NET) ? Or, If there's no library. How ca...

Where to save HTML and Images?

I have a project where a user for the company will use a winform HTML editor to put some text and pictures in for specific customers. The customers will be looking at this information on a website. What's the best way to handle this? If it was strictly HTML text then I could save everything in the database and not have any problems disp...

Unable to open browser from c# winforms

I am using following code to open an IE browser from toolstipmenu_click() but getting this message as: Error :No application is associated with the specified file for this operation My code: private void TutorialsToolStripMenuItem_Click(object sender, EventArgs e) { //Process.Start("http://www.microsoft.com/communi...

webbrowser control modal dialog

I am using WebBrowserControl in winforms to automate a data entry form. This website opens a new dialog window using ShowModalDialog and puts all the form fields in that new dialog window. How can I access that modal dialog window's contents from my winforms code and want to populate fields. When I access the webbrowser's document it ...

Load ASPX page to a windows webbrowser control

Hi I have a Windows form the import data to SQL, also I have an aspx page which is used for previewing data which i need to load to to the windows form using WebBrowser Control, my problem is that How do I pass a collection (List) to the aspx page for it to be able to bind to a gridview? ...

Web browser Control under Citrix environment

I have a web application which is also displayed in a web browser control of a winforms application. MS Word and Excel are installed on Citrix server. But I want to open a word/excel document on client's machine instead of Citrix server when I click a link on the website (which is displaying in web browser control) Is it possible? ...

Authenticate a WinForms WebBrowser control to an ASP.Net website using Forms mode authentication

We are accessing an ASP.Net web site from a WinForms application via the System.Windows.Forms.WebBrowser object. The web site is configured to use "Forms" mode authentication. On the website, we are currently using the AccountMembershipService and FormsAuthenticationService that is included in the .Net MVC 2 template. I would like to be...