About the Usage of htmlencode and urlencode ?
Answers were Sorted based on User's Feedback
Answer / kumar
HTMLEncode: converts the data to valid HTML format using
HTML escape sequences.
eg: If you want to print "<b>hi</b>" on the screen, by
default <b> & </b> will be treated as HTML tags for bolding
the content. But HTMLEncode will use the escape sequences
and print <b> instead of treating that as a HTML tag.
UTLEncode: converts the string to valid URL format using
URL escape sequences for example %20 will be replaces if
you have a space in the data and
Is This Answer Correct ? | 9 Yes | 3 No |
Answer / radha
Use the Htmlencode method to encode input parameters when
generating display.
Use the urlencode method to encode the url's recieved as
input parameters
Is This Answer Correct ? | 7 Yes | 4 No |
What are user controls and custom controls ?
Where is the session stored?
when the user control event occur in ASp page life cycle?
What is connection pooling and how to enable and disable connection pooling?
Demonstrate Render and PreRender?
How do you access individual items of an Master Page
Where the viewstate is stored after the page postback?
What is Http handler?
What is the need of client side and server side validation ?
Explain About WebService
What is the use of The Page.Master Property?
About DataAdapters ?