Categories:
.NET (357)
C (330)
C++ (183)
CSS (84)
DBA (2)
General (7)
HTML (4)
Java (574)
JavaScript (106)
JSP (66)
Oracle (114)
Perl (46)
Perl (1)
PHP (1)
PL/SQL (1)
RSS (51)
Software QA (13)
SQL Server (1)
Windows (1)
XHTML (173)
Other Resources:
What are benefits and Limitation of using Hidden fields
What are benefits and Limitation of using Hidden fields ?
✍: Guest
Following are the benefits of using Hidden fields :-
ã They are simple to implement.
ã As data is cached on client side they work with Web Farms.
ã All browsers support hidden field.
ã No server resources are required.
Following are limitations of Hidden field :-
ã They can be tampered creating a security hole.
ã Page performance decreases if you store large data, as the data are stored in
pages itself.
ã Hidden fields do not support rich structures as HTML hidden fields are only
single valued. Then you have to work around with delimiters etc to handle
complex structures.
Below is how you will actually implement hidden field in a project
<input id="HiddenValue" type="hidden" value="Initial Value"
runat="server"NAME="HiddenValue">
2007-10-23, 5027👍, 0💬
Popular Posts:
What is AL.EXE and RESGEN.EXE? In the previous question you have seen how we can use resource files ...
What is XSLT? XSLT is a rule based language used to transform XML documents in to other file formats...
Why does malloc(0) return valid memory address? What's the use? malloc(0) does not return a non-NULL...
How To Compile a JUnit Test Class? Compiling a JUnit test class is like compiling any other Java cla...
What is the output of printf("%d")? 1. When we write printf("%d",x); this means compiler will print ...