IIS with Windows

Below are the benefits of using IIS 6.0 with Windows Server 2003.

1. Faster sites without the need for high spec hardware for Web sites, intranets, and Web-based applications.

2. You can check your site's potential speed improvement with real-time Compression Check tool provided by Port80 Software.

3. Reduces total response time per page request. Using HTTP compression helps end users experience a 50% reduction in download time.

4. HTTP compression reduces the size of files sent from your Web server to the Web browser by an average of 30 to 50 percent which is a dramatic decrease in bandwidth.

5. Using IIS 6.0 compression feature you can have savings in monthly bandwidth charges.

6. You can reduce bandwidth by enabling compression, and serve more users with the same hardware.

7. You can delay or eliminate the need to add more Web servers by enabling IIS 6.0 compression, even when your site gets more traffic.

8. Management code for compression is now part of core IIS 6.0 Web server for speed and stability.

9. Server-side compatibility issues are resolved.

10. Granular compression allows turning compression on/off at the global, site, folder, and file levels.

What is State Management and what are the different ways to maintain a state in .Net?

Web pages are recreated each time a page is posted to a server. In traditional Web programming, this would ordinarily mean that all information associated with the page and the controls within the page would be lost with each round trip.

To overcome this inherent limitation of traditional Web programming, the ASP.NET page framework includes various options to help you preserve changes when Managing the State. The page framework includes a facility called view state that automatically preserves property values of the page and all controls on it between round trips.
However, you will probably also have application-specific values that you want to preserve. This can be done using state management options.

Client-Based State Management Options: View State Hidden Form Fields Cookies Query Strings

Server-Based State Management Options: Application State Session State Database Support

What server controls come with ASP.NET?

Server controls are supplied with ASP.NET. Server controls in ASP.NET are different to the normal windows controls as they work within the .NET FrameWork. The different types of server controls in ASP.NET are:

• HTML Server Controls: These controls refer to the HTML elements that can be used in server code. The HTML elements can be converted into HTML server controls.

• ASP.NET Server controls: ASP.NET server controls are the general controls like textbox, buttons, tables etc.

• Validation Controls: these controls are used to validate user input. Normally these controls are attached with textboxes, checkboxes and radio buttons to check the values entered or selected.

• USER Controls: These controls are those controls that are created by the user and are used just like all other controls.

What is the AdRotator control and it's uses?

AdRotator is a special control in ASP.NET used to display flashing banner advertisments. The control can display advertisments randomly or sequentially as set by the developer.

Using the AdRotator control

To use the control, drag it from the toolbox. In the properties window you will there are three key properties:

.AdvertisementsFile .KeywordFilter .Target

The advertisement file is an XML file which contains information about the image to be displayed and the page to which the user should be redirected on click.

What is a Calendar control and how do I use it?

The Calendar control is used to display the calendar year on a web page. You can view dates or select a specific day, week or month. The default event of the Calendar control is Selection Changed event that is called when a selection is made on the control.

Drag a calendar control and a textbox from the toolbox. We will display the date selected from the calendar control in the textbox.

What is a RequiredFieldValidator control?

The RequiredFieldValidator is a control that checks whether the value of an assigned input control is different from its initial value.

To work with this control drag a RequiredFieldValidator control, Command Button and two TextBoxes from the Toolbox. The intention is to display the text entered in TextBox1 in TextBox2 when the Command Button is clicked. If there is no value in TextBox1, an error message ("Saying Textbox1 needs a value") will be spawned.

All you have to make the RequiredFieldValidator work is to open the properties of the control. Looking at two properties; ErrorMessage and ControltoValidate specifically. The ErrorMessage property should be completed with a warning that the field needs to be completed. Secondly, the ControltoValidate property is used to tag which control is to be validated.

RELATED POST

ASP.NET INTERVIEW QUESTIONS AND ANSWERS PART ONE

ASP.NET INTERVIEW QUESTIONS AND ANSWERS PART TWO

ASP.NET INTERVIEW QUESTIONS AND ANSWERS PART THREE

ASP.NET INTERVIEW QUESTIONS AND ANSWERS PART FOUR

ASP.NET INTERVIEW QUESTIONS AND ANSWERS PART FIVE

ADO.NET INTERVIEW QUESTIONS AND ANSWERS PART ONE

ADO.NET INTERVIEW QUESTIONS AND ANSWERS PART TWO

You can also learn the concept of frame work concept in detail with questions and answers in the following place.

MICROSOFT DOT NET FRAME WORK QUESTIONS AND ANSWERS PART ONE

MICROSOFT DOT NET FRAME WORK QUESTIONS AND ANSWERS PART TWO

MICROSOFT DOT NET FRAME WORK QUESTIONS AND ANSWERS PART THREE

MICROSOFT DOT NET FRAME WORK QUESTIONS AND ANSWERS PART FOUR

MICROSOFT DOT NET FRAME WORK QUESTIONS AND ANSWERS PART FIVE

MICROSOFT DOT NET FRAME WORK QUESTIONS AND ANSWERS PART SIX

MICROSOFT DOT NET FRAME WORK QUESTIONS AND ANSWERS PART SEVEN

MICROSOFT DOT NET FRAME WORK QUESTIONS AND ANSWERS PART EIGHT

MICROSOFT DOT NET FRAME WORK QUESTIONS AND ANSWERS PART NINE

MICROSOFT DOT NET FRAME WORK QUESTIONS AND ANSWERS PART TEN

No comments:

Post a Comment