473,809 Members | 2,758 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

LoadViewState datagrid

LoadViewState is taking a long time on a page, the bigger the dataset the
longer the wait and also it takes longer on remote server than local host.

EnableViewState is FALSE and when I examine the viewstate size for the
datagrid in trace it is ZERO.

But the view state string is very long :|

What the heck is going on here ? ViewState gurus neeeded.

TIA

--
¬¬¬¬nergal¬¬¬¬
Nov 18 '05 #1
6 1926
By disabling viewstate in datagrid doesnt reduce the size of viewstate to
zero. Other controls in the page will have view state enabled, so it will
have viewstate of those controls. If you disable viewstate at page level
also, you will have viewstate string in the page but with only few
characters length. If you dont want that also, you need to remove form tag
with runat=server from your page.

--
Saravana
http://dotnetjunkies.com/WebLog/saravana/
www.ExtremeExperts.com
"Nergal" <kj****@jfskj.c om> wrote in message
news:Xn******** *************** *****@207.46.24 8.16...
LoadViewState is taking a long time on a page, the bigger the dataset the
longer the wait and also it takes longer on remote server than local host.

EnableViewState is FALSE and when I examine the viewstate size for the
datagrid in trace it is ZERO.

But the view state string is very long :|

What the heck is going on here ? ViewState gurus neeeded.

TIA

--
¬¬¬¬nergal¬¬¬¬

Nov 18 '05 #2
I appreciate your point but I am not worried about a few things being in
view state, in fact it's essential.

But this datagrid is causing LoadViewState to take 10-20 SECONDS and that
really is a problem and I can't understand why its doing it.

Cheers.

"Saravana" <sa******@sct.c o.in> wrote in
news:r_******** ********@news.c pqcorp.net:
By disabling viewstate in datagrid doesnt reduce the size of viewstate
to zero. Other controls in the page will have view state enabled, so
it will have viewstate of those controls. If you disable viewstate at
page level also, you will have viewstate string in the page but with
only few characters length. If you dont want that also, you need to
remove form tag with runat=server from your page.


--
¬¬¬¬nergal¬¬¬¬
Nov 18 '05 #3
I think Saravana's point is you should make sure no other controls are
contributing significantly to your viewstate.

Eliyahu

"Nergal" <kj****@jfskj.c om> wrote in message
news:Xn******** *************** *****@207.46.24 8.16...
I appreciate your point but I am not worried about a few things being in
view state, in fact it's essential.

But this datagrid is causing LoadViewState to take 10-20 SECONDS and that
really is a problem and I can't understand why its doing it.

Cheers.

"Saravana" <sa******@sct.c o.in> wrote in
news:r_******** ********@news.c pqcorp.net:
By disabling viewstate in datagrid doesnt reduce the size of viewstate
to zero. Other controls in the page will have view state enabled, so
it will have viewstate of those controls. If you disable viewstate at
page level also, you will have viewstate string in the page but with
only few characters length. If you dont want that also, you need to
remove form tag with runat=server from your page.


--
¬¬¬¬nergal¬¬¬¬

Nov 18 '05 #4
No, nothing out of the ordinary.

"Eliyahu Goldin" <re************ *@monarchmed.co m> wrote in
news:eB******** ******@TK2MSFTN GP10.phx.gbl:
I think Saravana's point is you should make sure no other controls are
contributing significantly to your viewstate.

Eliyahu

"Nergal" <kj****@jfskj.c om> wrote in message
news:Xn******** *************** *****@207.46.24 8.16...
I appreciate your point but I am not worried about a few things being
in view state, in fact it's essential.

But this datagrid is causing LoadViewState to take 10-20 SECONDS and
that really is a problem and I can't understand why its doing it.

Cheers.

"Saravana" <sa******@sct.c o.in> wrote in
news:r_******** ********@news.c pqcorp.net:
> By disabling viewstate in datagrid doesnt reduce the size of
> viewstate to zero. Other controls in the page will have view state
> enabled, so it will have viewstate of those controls. If you
> disable viewstate at page level also, you will have viewstate
> string in the page but with only few characters length. If you dont
> want that also, you need to remove form tag with runat=server from
> your page.
>


--
¬¬¬¬nergal¬¬¬¬



--
¬¬¬¬nergal¬¬¬¬
Nov 18 '05 #5
Can you post your aspx code.

--
Saravana
http://dotnetjunkies.com/WebLog/saravana/
www.ExtremeExperts.com
"Nergal" <kj****@jfskj.c om> wrote in message
news:Xn******** *************** *****@207.46.24 8.16...
I appreciate your point but I am not worried about a few things being in
view state, in fact it's essential.

But this datagrid is causing LoadViewState to take 10-20 SECONDS and that
really is a problem and I can't understand why its doing it.

Cheers.

"Saravana" <sa******@sct.c o.in> wrote in
news:r_******** ********@news.c pqcorp.net:
By disabling viewstate in datagrid doesnt reduce the size of viewstate
to zero. Other controls in the page will have view state enabled, so
it will have viewstate of those controls. If you disable viewstate at
page level also, you will have viewstate string in the page but with
only few characters length. If you dont want that also, you need to
remove form tag with runat=server from your page.


--
¬¬¬¬nergal¬¬¬¬

Nov 18 '05 #6
You stated "But the view state string is very long :|" This means
something is being stored in it if you are convinced it is not the
datagrid pull it off the page and see what happens.

Sorry that does not much help.

Nergal <kj****@jfskj.c om> wrote in message news:<Xn******* *************** ******@207.46.2 48.16>...
No, nothing out of the ordinary.

"Eliyahu Goldin" <re************ *@monarchmed.co m> wrote in
news:eB******** ******@TK2MSFTN GP10.phx.gbl:
I think Saravana's point is you should make sure no other controls are
contributing significantly to your viewstate.

Eliyahu

"Nergal" <kj****@jfskj.c om> wrote in message
news:Xn******** *************** *****@207.46.24 8.16...
I appreciate your point but I am not worried about a few things being
in view state, in fact it's essential.

But this datagrid is causing LoadViewState to take 10-20 SECONDS and
that really is a problem and I can't understand why its doing it.

Cheers.

"Saravana" <sa******@sct.c o.in> wrote in
news:r_******** ********@news.c pqcorp.net:

> By disabling viewstate in datagrid doesnt reduce the size of
> viewstate to zero. Other controls in the page will have view state
> enabled, so it will have viewstate of those controls. If you
> disable viewstate at page level also, you will have viewstate
> string in the page but with only few characters length. If you dont
> want that also, you need to remove form tag with runat=server from
> your page.
>

--
¬¬¬¬nergal¬¬¬¬


Nov 18 '05 #7

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

Similar topics

0
1805
by: Christian | last post by:
Hi, I have a Webform with 1 submit button and 1 label code behind : public class MainWebForm: System.Web.UI.Page { protected System.Web.UI.WebControls.Label lblFName; protected override void LoadViewState( object o )
0
1451
by: Christian | last post by:
Hi, I have a Webform with 1 submit button and 1 label code behind : public class MainWebForm: System.Web.UI.Page { protected System.Web.UI.WebControls.Label lblFName; protected override void LoadViewState( object o )
0
1135
by: SSW | last post by:
Hi: In aspx.cs page i had written the code below. I only have TextBox and Button Control. LoadViewStateis Never called But when we put datagrid/DataList It works. Can any one, please tell where i'm going wonge. Thanks, sswalia ----------------------------------------------------------------------------
2
1904
by: SSW | last post by:
Hi: In aspx.cs page i had written the code below. I have a button control and only create TextBox Control dynamically. LoadViewState is Never called. But when we put datagrid/DataList it works. Can any one help me with this? Thanks, SSW
5
5300
by: William F. Robertson, Jr. | last post by:
I am having difficulty in diagnosing this problem and was throwing it out for some other eyes. I have derived my own Page class from System.Web.UI.Page and have overridden the LoadViewState method. I derive all of my application pages from my own Page. For some reason on two of my pages the LoadViewState derived method is not firing and thus not setting up some of my controls on the page. On the other 240 ish pages, the...
2
3486
by: Devin Fensterheim | last post by:
Does anyone know of an issue with a control's viewstate not persisting when dynamically adding custom controls to a web form using AddAt? If a control is added to an HTML form directly using the HtmlForm's AddAt method (per the below code segment), then LoadViewState is never fired for the control, even if SaveViewState, which is fired, saves to the control's ViewState. However, if Add is used instead of AddAt, LoadViewState is called...
0
1513
by: Ferret | last post by:
I've found what seems to be a nasty bug in the DataGrid and Repeater classes. If CreateChildControls gets called before LoadViewState, ViewState fails to map and you end up with nothing on a Postback. Please try the following test, and let me know if you can reproduce this: - Create a custom DataGrid or Repeater class that does nothing but derive from one of the above and gives a place to put breakpoints in overriden handlers - Create...
0
1317
by: J. | last post by:
Hello, I'm trying to override the LoadViewState-method of a simple page using the .NET Framework 2.0. However, the LoadViewState-method in the code below never gets executed. The SaveViewState-method gets executed on every page request as described in http://msdn.microsoft.com/asp.net/whidbey/default.aspx?pull=/library/en-us/dnvs05/html/internals.asp Can anyone pinpoint the problem? (Or am I just a dumbass?)
0
2144
by: Anand Saha | last post by:
In case you are creating your own control dynamically and need to re-create them on LoadViewState, only to discover that this function is not being called by the framework, reason and solution is this: The LoadViewState function is called by the framework only when the viewstate object is not null (pretty reasonable). In the above scenario, SaveViewState might not need to save anything in the viewstate object, leaving the...
0
9721
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, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9601
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 effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
1
10378
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9198
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
6881
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5550
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
1
4332
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
3861
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
3013
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.