473,386 Members | 1,786 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,386 software developers and data experts.

Viewstate

I have an aspx page with nothing in it but one literal, which I populate
with straight forward html (the html consists of about 25 tables with
approx. 30 rows each and two columns with text in each cell). When I click
to view the aspx page it takes longer than I would have thought for me to
recieve the page. On looking at the source the <input type="hidden"
name="__VIEWSTATE" value=jkasdkahsj....> is there but the value is vast in
size, does anyone know why this is and what I can do to resolve it, there
are no controls on the page that post back, just the html I mentioned above.

Thanks.
Nov 19 '05 #1
5 2594
If you wish to turn off Viewstate for your literal control,
use the EnableViewState property and set it to "false".

<asp:Literal id="Literal1"
EnableViewState="false"
Text="Text"
runat="server"/>


Juan T. Llibre
ASP.NET MVP
http://asp.net.do/foros/
Foros de ASP.NET en Español
=====================

"Steven Licciardi" <st**************************@hotmail.com> wrote in
message news:uc**************@TK2MSFTNGP10.phx.gbl...
I have an aspx page with nothing in it but one literal, which I populate
with straight forward html (the html consists of about 25 tables with
approx. 30 rows each and two columns with text in each cell). When I click
to view the aspx page it takes longer than I would have thought for me to
recieve the page. On looking at the source the <input type="hidden"
name="__VIEWSTATE" value=jkasdkahsj....> is there but the value is vast in
size, does anyone know why this is and what I can do to resolve it, there
are no controls on the page that post back, just the html I mentioned
above.

Thanks.



Nov 19 '05 #2
Thanks.

"Juan T. Llibre" <no***********@nowhere.com> wrote in message
news:uH*************@TK2MSFTNGP12.phx.gbl...
If you wish to turn off Viewstate for your literal control,
use the EnableViewState property and set it to "false".

<asp:Literal id="Literal1"
EnableViewState="false"
Text="Text"
runat="server"/>


Juan T. Llibre
ASP.NET MVP
http://asp.net.do/foros/
Foros de ASP.NET en Español
=====================

"Steven Licciardi" <st**************************@hotmail.com> wrote in
message news:uc**************@TK2MSFTNGP10.phx.gbl...
I have an aspx page with nothing in it but one literal, which I populate
with straight forward html (the html consists of about 25 tables with
approx. 30 rows each and two columns with text in each cell). When I
click
to view the aspx page it takes longer than I would have thought for me to
recieve the page. On looking at the source the <input type="hidden"
name="__VIEWSTATE" value=jkasdkahsj....> is there but the value is vast in
size, does anyone know why this is and what I can do to resolve it, there
are no controls on the page that post back, just the html I mentioned
above.

Thanks.


Nov 19 '05 #3
Hi Steven,

First about Viewstate...

The web is a stateless medium – state is not maintained between client
requests by default. ViewState is the mechanism by which page state
(information) is maintained between page post backs.

OK, now. The viewstate is encrypted and sent to the client(browser) and then
decrypted back when it hits back the server. The vast value you see there is
nothing but this encrypted code. There will be performance overhead if
viewstate is enabled.

The server side controls have this property called 'EnabledViewState'. Set
it to false, in case you do not need the view state for a particular control.
You can also disable viewstate for the entire page by setting
'EnabledViewState' to false in the page level.

Need any help, do post a msg back..

Happy Coding

"Steven Licciardi" wrote:
I have an aspx page with nothing in it but one literal, which I populate
with straight forward html (the html consists of about 25 tables with
approx. 30 rows each and two columns with text in each cell). When I click
to view the aspx page it takes longer than I would have thought for me to
recieve the page. On looking at the source the <input type="hidden"
name="__VIEWSTATE" value=jkasdkahsj....> is there but the value is vast in
size, does anyone know why this is and what I can do to resolve it, there
are no controls on the page that post back, just the html I mentioned above.

Thanks.

Nov 19 '05 #4
The property is "EnableViewState", not "EnabledViewState".

Juan T. Llibre
ASP.NET MVP
http://asp.net.do/foros/
Foros de ASP.NET en Español
=====================

"Vishnu-Chivukula" <Vi*************@discussions.microsoft.com> wrote in
message news:C5**********************************@microsof t.com...
Hi Steven,

First about Viewstate...

The web is a stateless medium - state is not maintained between client
requests by default. ViewState is the mechanism by which page state
(information) is maintained between page post backs.

OK, now. The viewstate is encrypted and sent to the client(browser) and
then
decrypted back when it hits back the server. The vast value you see there
is
nothing but this encrypted code. There will be performance overhead if
viewstate is enabled.

The server side controls have this property called 'EnabledViewState'. Set
it to false, in case you do not need the view state for a particular
control.
You can also disable viewstate for the entire page by setting
'EnabledViewState' to false in the page level.

Need any help, do post a msg back..

Happy Coding

"Steven Licciardi" wrote:
I have an aspx page with nothing in it but one literal, which I populate
with straight forward html (the html consists of about 25 tables with
approx. 30 rows each and two columns with text in each cell). When I
click
to view the aspx page it takes longer than I would have thought for me to
recieve the page. On looking at the source the <input type="hidden"
name="__VIEWSTATE" value=jkasdkahsj....> is there but the value is vast
in
size, does anyone know why this is and what I can do to resolve it, there
are no controls on the page that post back, just the html I mentioned
above.

Thanks.

Nov 19 '05 #5
Thanx Juan,

I stand corrected. It is 'EnableViewState'.

;-)

Happy Coding.

"Juan T. Llibre" wrote:
The property is "EnableViewState", not "EnabledViewState".

Juan T. Llibre
ASP.NET MVP
http://asp.net.do/foros/
Foros de ASP.NET en Español
=====================

"Vishnu-Chivukula" <Vi*************@discussions.microsoft.com> wrote in
message news:C5**********************************@microsof t.com...
Hi Steven,

First about Viewstate...

The web is a stateless medium - state is not maintained between client
requests by default. ViewState is the mechanism by which page state
(information) is maintained between page post backs.

OK, now. The viewstate is encrypted and sent to the client(browser) and
then
decrypted back when it hits back the server. The vast value you see there
is
nothing but this encrypted code. There will be performance overhead if
viewstate is enabled.

The server side controls have this property called 'EnabledViewState'. Set
it to false, in case you do not need the view state for a particular
control.
You can also disable viewstate for the entire page by setting
'EnabledViewState' to false in the page level.

Need any help, do post a msg back..

Happy Coding

"Steven Licciardi" wrote:
I have an aspx page with nothing in it but one literal, which I populate
with straight forward html (the html consists of about 25 tables with
approx. 30 rows each and two columns with text in each cell). When I
click
to view the aspx page it takes longer than I would have thought for me to
recieve the page. On looking at the source the <input type="hidden"
name="__VIEWSTATE" value=jkasdkahsj....> is there but the value is vast
in
size, does anyone know why this is and what I can do to resolve it, there
are no controls on the page that post back, just the html I mentioned
above.

Thanks.


Nov 19 '05 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

9
by: John Kirksey | last post by:
I have a page that uses an in-place editable DataGrid that supports sorting and paging. EnableViewState is turned ON. At the top of the page are several search fields that allow the user to filter...
3
by: Steve Drake | last post by:
All, I have a CONTROL that contains 1 control (Control ONE), the 1 control that it can contain 1 or 2 control (Control A and B). Control A, raises and event and Control ONE receives this event...
7
by: et | last post by:
I'm not sure I understand the use of the ViewState. Do I understand correctly that values of controls are automatically held in a hidden control called ViewState? If so, then why can't we get...
6
by: hitendra15 | last post by:
Hi I have created web user control which has Repeater control and Linkbutton in ItemTemplate of repeater control, following is the code for this control On first load it runs fine but when...
12
by: Nick C | last post by:
Hi How can i reduce the viewstate for my asp.net application. It is getting very large now. What is a good solution? thanks N
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.