ALLInterview.com :: Home Page KalAajKal.com
 Advertise your Business Here     
Browse  |   Placement Papers  |   Company  |   Code Snippets  |   Certifications  |   Visa Questions
Post Question  |   Post Answer  |   My Panel  |   Search  |   Articles  |   Topics  |   ERRORS new
   Refer this Site  Refer This Site to Your Friends  Site Map  Bookmark this Site  Set it as your HomePage  Contact Us     Login  |  Sign Up                      
tip       Ask Questions on ANYTHING, that arise in your Daily Life at     FORUM9.COM
Google
 
Categories  >>  Software  >>  Microsoft Related  >>  ASP.NET
 
 


 

 
 Visual Basic interview questions  Visual Basic Interview Questions
 C Sharp interview questions  C Sharp Interview Questions
 ASP.NET interview questions  ASP.NET Interview Questions
 VB.NET interview questions  VB.NET Interview Questions
 COM+ interview questions  COM+ Interview Questions
 ADO.NET interview questions  ADO.NET Interview Questions
 IIS interview questions  IIS Interview Questions
 MTS interview questions  MTS Interview Questions
 Crystal Reports interview questions  Crystal Reports Interview Questions
 BizTalk interview questions  BizTalk Interview Questions
 Dot Net interview questions  Dot Net Interview Questions
 Exchange Server interview questions  Exchange Server Interview Questions
 SharePoint interview questions  SharePoint Interview Questions
 Microsoft Related AllOther interview questions  Microsoft Related AllOther Interview Questions
Question
WHT IS DIFFERENCES BETWEEN HTML CONTROLS AND SERVER CONTROLS.
 Question Submitted By :: Eswar Reddy
I also faced this Question!!     Rank Answer Posted By  
 
  Re: WHT IS DIFFERENCES BETWEEN HTML CONTROLS AND SERVER CONTROLS.
Answer
# 1
In server controls processing would be done at server side 
but in html controls would be made to client side only.
 
Is This Answer Correct ?    8 Yes 2 No
Rashmi
 
  Re: WHT IS DIFFERENCES BETWEEN HTML CONTROLS AND SERVER CONTROLS.
Answer
# 2
HTML controls do process on client side whereas Server 
controls run on server side.
 
Is This Answer Correct ?    12 Yes 2 No
Kailash Dhondiyal
 
 
 
  Re: WHT IS DIFFERENCES BETWEEN HTML CONTROLS AND SERVER CONTROLS.
Answer
# 3
if HTML controls do process on client side then why they 
called server control mr kailash from HAPUR(GZB)
 
Is This Answer Correct ?    1 Yes 3 No
Piyush Kotiyal
 
  Re: WHT IS DIFFERENCES BETWEEN HTML CONTROLS AND SERVER CONTROLS.
Answer
# 4
The html controls the server is hit only on page submit.But
for server controls on every user response the server is
hit.The server controls are used in places like railway
reservation.The html control is used in places like hotel
menu card.
 
Is This Answer Correct ?    3 Yes 1 No
Sathish
 
  Re: WHT IS DIFFERENCES BETWEEN HTML CONTROLS AND SERVER CONTROLS.
Answer
# 5
Sever Control internally maintain the sate(EnableViewState 
prperty) whereas HTML control  are  not having such 
property to maintain the state.
 
Is This Answer Correct ?    2 Yes 0 No
Vaishali
 
  Re: WHT IS DIFFERENCES BETWEEN HTML CONTROLS AND SERVER CONTROLS.
Answer
# 6
server controls run server side and html controls run 
browser side and as well as client side . the html controls 
run on server side using runat="server"
 
Is This Answer Correct ?    5 Yes 2 No
Nagaraj
 
  Re: WHT IS DIFFERENCES BETWEEN HTML CONTROLS AND SERVER CONTROLS.
Answer
# 7
Attaching Javascript methods for Html controls is flexible 
compared to Server controls where for servercontrols we 
need to register the Javascript method to event in one of 
the events of Page Life Cycle which is a complex task.
 
Is This Answer Correct ?    2 Yes 2 No
Shiva
 
  Re: WHT IS DIFFERENCES BETWEEN HTML CONTROLS AND SERVER CONTROLS.
Answer
# 8
ASP.NET Server Controls
Advantages:

1. ASP .NET Server Controls can however detect the target 
browser's capabilities and render themselves accordingly. 
No issues for compatibility issues of Browsers i.e page 
that might be used by both HTML 3.2 and HTML 4.0 browsers 
code to be written by you.
2. Newer set of controls that can be used in the same 
manner as any HTMl control like Calender controls. (No need 
of Activex Control for doing this which would then bring up 
issues of Browser compatibility).
3. Processing would be done at the server side. In built 
functionality to check for few values(with Validation 
controls) so no need to choose between scripting language 
which would be incompatible with few browsers.
4. ASP .NET Server Controls have an object model different 
from the traditional HTML and even provide a set of 
properties and methods that can change the outlook and 
behavior of the controls.
5. ASP .NET Server Controls have higher level of 
abstraction. An output of an ASP .NET server control can be 
the result of many HTML tags that combine together to 
produce that control and its events.

 
Disadvantages:

1. The control of the code is inbuilt with the web server 
controls so you have no much of direct control on these 
controls
2. Migration of ASP to any ASP.NET application is 
difficult. Its equivalent to rewriting your new application 
HTML Server Controls
Advantages:

1. The HTML Server Controls follow the HTML-centric object 
model. Model similar to  HTML
2. Here the controls can be made to interact with Client 
side scripting. Processing would be done at client as well 
as server depending on your code. 
3. Migration of the ASP project thought not very easy can 
be done by giving each intrinsic HTML control a runat = 
server to make it HTML Server side control.
4. The HTML Server Controls have no mechanism of 
identifying the capabilities of the client browser 
accessing the current page.
5. A HTML Server Control has similar abstraction with its 
corresponding HTML tag and offers no abstraction.
 
Disadvantages:
1. You would need to code for the browser compatibility.
 
Is This Answer Correct ?    0 Yes 0 No
Nagaraj
 
  Re: WHT IS DIFFERENCES BETWEEN HTML CONTROLS AND SERVER CONTROLS.
Answer
# 9
ASP.NET Server Controls
Advantages:

1. ASP .NET Server Controls can however detect the target 
browser's capabilities and render themselves accordingly. 
No issues for compatibility issues of Browsers i.e page 
that might be used by both HTML 3.2 and HTML 4.0 browsers 
code to be written by you.
2. Newer set of controls that can be used in the same 
manner as any HTMl control like Calender controls. (No need 
of Activex Control for doing this which would then bring up 
issues of Browser compatibility).
3. Processing would be done at the server side. In built 
functionality to check for few values(with Validation 
controls) so no need to choose between scripting language 
which would be incompatible with few browsers.
4. ASP .NET Server Controls have an object model different 
from the traditional HTML and even provide a set of 
properties and methods that can change the outlook and 
behavior of the controls.
5. ASP .NET Server Controls have higher level of 
abstraction. An output of an ASP .NET server control can be 
the result of many HTML tags that combine together to 
produce that control and its events.

 
Disadvantages:

1. The control of the code is inbuilt with the web server 
controls so you have no much of direct control on these 
controls
2. Migration of ASP to any ASP.NET application is 
difficult. Its equivalent to rewriting your new application 
HTML Server Controls
Advantages:

1. The HTML Server Controls follow the HTML-centric object 
model. Model similar to  HTML
2. Here the controls can be made to interact with Client 
side scripting. Processing would be done at client as well 
as server depending on your code. 
3. Migration of the ASP project thought not very easy can 
be done by giving each intrinsic HTML control a runat = 
server to make it HTML Server side control.
4. The HTML Server Controls have no mechanism of 
identifying the capabilities of the client browser 
accessing the current page.
5. A HTML Server Control has similar abstraction with its 
corresponding HTML tag and offers no abstraction.
 
Disadvantages:
1. You would need to code for the browser compatibility.
HTML Intrinsic Controls
Advantages:
1. Model similar to HTML
2. Here the controls can be made to interact with Client 
side scripting
 
Disadvantages:
1. You would need to code for the browser compatibility
 
Is This Answer Correct ?    1 Yes 0 No
Kailash Paliwal
 

 
 
 
Other ASP.NET Interview Questions
 
  Question Asked @ Answers
 
what is CTS? PrimeLine3
Is It Possible for Static Variables access normal variable? and Normal Varialbe Access the static Variables? Phoenix-Technologies1
What are the Application_Start and Session_Start subroutines used for?  5
How to send data through querystring to another page but it should not be displayed in URL EMR2
How to retrieve data row by row from a DataTable? Thanks In advance PriyaPP  3
For Web services where you can browse on the Internet?  1
When during the page processing cycle is ViewState available?  1
Explain the functionality of "EnableViewState" ? What happens if you want it on or off?  1
Write a code for "RequiredFieldValidator" in java script Wipro3
what are the main advantage in .net? TCS3
When does the application ONEND event handler fire? C-Squared-Systems1
What is the difference between response.redirect and server.transfer, how to choose one among the other? 247Customer2
One of the properties of the Web Part has an incorrect format. Windows SharePoint Services cannot deserialize the Web Part. Check the format of the properties and try again. - this error is occured in Sharepoint 2007 while deploy the web part WebInfo1
If we add a textbox and give the required field validator,and i add two radio buttons 1 is yes another one is No.And i add another one server control button ,if i click the button ,if the radio button Yes is checked the validation control is fired ,if no the validation control is not fired.So what you used to solve this problem. CTS6
Descrie about response.buffer and repsonse.flush ? Cognizent1
How do you do exception management? Accenture1
can machine.config file orverrides web.config. For example: if u set session timeout as 30 mins in web.config file to a particular application and if u set session timeout as 10 mins in machin.config. what will happen and which session is set to the appliction? SunGard2
What is boxing and unboxing ? Accenture6
How do you associate two or more validators with a single input control? What do you need to do to prevent space from being reserved for a validation control thatpasses its validation test?  1
In what order do the events of an ASPX page execute. As a developer, why is it important to understand these events? Syntax-Softtech5
 
For more ASP.NET Interview Questions Click Here 
 
 
 
 
 
   
Copyright Policy  |  Terms of Service  |  Help  |  Site Map 1  |  Articles  |  Site Map  |   Site Map  |  Contact Us interview questions urls   External Links 
   
Copyright © 2007  ALLInterview.com.  All Rights Reserved.

ALLInterview.com   ::  Forum9.com   ::  KalAajKal.com