| When an .aspx page is requested from the web server, the out put will be rendered to browser in following format. |
| a) HTML |
| b) XML |
| c) WML |
| d) JSP Tell me the answer |
Loading
| When an .aspx page is requested from the web server, the out put will be rendered to browser in following format. |
| a) HTML |
| b) XML |
| c) WML |
| d) JSP Tell me the answer |
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question.
SenthilkumarPosted Mar 25, 2012, 11:35 PM
The answer for this question is HTML.
The Internet browser was designed to render in the HTML format. The asp.net controls are built on top of the HTML control and which was designed to run on the server side and result will be send it back to the browser as HTML format.
For example the input button will be like the following in HTML.
At the same time if you declare the control as ASP.Net button then
But when you request the page into the browser, the IIS engine will check the request is valid or not. If it is valid then it will be processed in the server side and the result will be converted as HTML. The browser will recieve the response as HTML.
VulpesPosted Mar 25, 2012, 11:16 AM