The HttpWebRequest and HttpWebResponse classes from the .NET Base Class Library make it easy to access Internet resources through a request/response model. The Httprequest object identifies the Web page to get and contains a GetResponse() method for obtaining a HttpWebResponse object. With a HttpWebResponse object, we retrieve a stream and extract page information using stream operations.
Category: Windows app
Windows application development
Get Selected Radio button’s Text in C# windows app
The object is to get selected radio button’s text in windows app using C#. It can be done in many ways. Suppose you have one group box having radio-buttons. You have to show selected radio button’s text on OK button click.
Create Windows Service quickly using .NET
Generally some tasks are required to be scheduled or dependent on the time. So this can be performed easily using windows service. Here are the steps to create windows service quickly.
Windows Form Localization in .NET
This article explains the steps to implement localization for windows app using .NET
1. Design the interface by using table layout panel.
2. Change the localizable property of form to true.
Install sql server database with visual studio setup
Generally, It is required to install sql server database with visual studio setup. Here are the steps to install sql server database with setup using custom action.