Explain the differences between Server-side and Client-side
code?
Answer Posted / sateesh kumar
Server-side code executes at server-side like asp.net server
controls and server validation controls
client-side means all the code will be executed by web
browser like all the validation will be executes by browser
using javascript.
only the differance comes in performance
1.if u place a RegularExpressionValidator it results a
request and obviously server has to send response.
2.only the advantage with server-side is,no need of writing
javascript statements and no need to bather from malicious
attacks on the source code.
| Is This Answer Correct ? | 6 Yes | 3 No |
Post New Answer View All Answers
Is asp.net mvc still used? : Asp.Net MVC
How many types of controls are there in asp.net?
Define static function?
What is viewstate in asp net with example?
Do you know caching feature?
What should you do is you want to remove an existing component but would like to make some funtionalities?
What are the advantages of using sql stored procedures instead of adhoc sql queries in an asp.net web application?
What are Session states available and its Uses?
What is the use of execute non query in asp.net?
What is a form tag?
Hello, Using Visual Studio 2005 (VB) I am working to create a Web Site implementing the following: Within a gridView I have placed a dropdownlist control with a DataSourceID="SDSLkupList". SDSLkupList is a sqlDataSource used to store a lookup list for dropdownlist translation from ID to text. SDSLkupList contains the translation text and other fields related to the dropdown selection ID. (Thought it would be efficient to get everything at the same time.) I would like to provide the user the ability to select from the dropdownlist and, based on the selection, use labels to list related columns stored on the SDSLkupList in separate gridView columns. I have read that SqlDataSources are not meant to be used for individual controls. Since SDSLkupList contains all related information, is there a way to do a find using the dropdownlist selectedValue? (I was not able to discover one.) Otherwise, what should I use? It would need to set the labels on the gridView DataRowBound event as well as the SelectedIndexChanged events. Has anyone done this? Any help would be appreciated. Thanks in Advance. Neal
Which browsers support the xmlhttprequest object?
What's the use of formatters in .net?
What is Model-View-View Model?
What is the difference between pathparam and queryparam?