what is diffrance between response.write &
response.output.write
Answer Posted / balasubramani
Response.Write will print the result as it is.
Whereas Response.Output.Write will print the formatted
output.
For Example:
Response.Output.Write("Notepad Process Started at : {0}",
DateTime.Now.ToString());
| Is This Answer Correct ? | 20 Yes | 1 No |
Post New Answer View All Answers
What does clearing cache?
How to do parallel database export in remote SQL Server in ESSL time track. It is working for local server but not working for remote SQL Server
What symbol specifies the beginning of a query string?
Explain login control and form authentication.
What r the asp.net list controls and difference between them?
What are the advantages of asp.net mvc framework? : asp.net mvc
What is & in a url?
how to debug web services on consumer side?
Explain the different types of assemblies?
What is active web pages?
How can we create custom controls in asp net?
What is Cookies Less Session?
If we remove web.config or machine.config from the application then, is this application will works?
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
Who can consume WebAPI?