Ask a Question related to ASP.NET General, Design and Development.
-
raagz #1
Newbie question on Viewstate information
Hi All,
I am new to ASP.NET .
I have developed an sample application .
My problem is that all webpages are very very slow..
and when i see the HTML source from the IE (view -> source) i see
a lot of viewstate information ..
i copied the whole viewstate information and pasted in text file to
see its size..and i am totally surprised to see its size as 1.5MB !
So can anybody suggest me what mistake i have done in my application
and what measures should i take to make my application run faster ?
Thanks
Regards
Raagz
raagz Guest
-
Newbie Seeks Information
I am NOT an IT professional - just a person trying to implement an idea. I am attempting to set up a DigiChat AV/IM v5.1 chat room and seek... -
Question about duplicate ViewState keys.
If two web server controls use ViewState and both controls inadvertently use the same key name for an item, will a collision occur between the two... -
Viewstate question
Sorry for crossposting this question, but after I submitted it to VB group, I remembered that this is infact an ASP.NET question - sorry again! ... -
enableviewstate=false, still viewstate information is added
Hi Even though the Viewstate has been disabled, ASP.NET still uses about twenty bytes for Viewstate. Not only can you disable Viewstate at the... -
Storing page information / viewstate between pages
Thanks for the reply. Eventually I ended up using a serializable class, which holds the entered data, and is stored in the session when the user... -
STom #2
Re: Newbie question on Viewstate information
Do you have lots of controls on the pages? Do these controls have their
viewstate property set to True?
"raagz" <raagzcd@yahoo.com> wrote in message
news:e1ee8ab9.0306271243.1999bee8@posting.google.c om...> Hi All,
>
> I am new to ASP.NET .
> I have developed an sample application .
> My problem is that all webpages are very very slow..
>
> and when i see the HTML source from the IE (view -> source) i see
>
> a lot of viewstate information ..
>
> i copied the whole viewstate information and pasted in text file to
> see its size..and i am totally surprised to see its size as 1.5MB !
>
> So can anybody suggest me what mistake i have done in my application
> and what measures should i take to make my application run faster ?
>
> Thanks
>
> Regards
> Raagz
STom Guest
-
MC D #3
Re: Newbie question on Viewstate information
1.5 megs! Holy crap!
How many controls on the page? Each control should have its viewstate
property set to false unless it needs to maintain its state between
postbacks.
Also, the enableviewstatemac property of the page directive should be false,
otherwise the viewstate will be larger.
"raagz" <raagzcd@yahoo.com> wrote in message
news:e1ee8ab9.0306271243.1999bee8@posting.google.c om...> Hi All,
>
> I am new to ASP.NET .
> I have developed an sample application .
> My problem is that all webpages are very very slow..
>
> and when i see the HTML source from the IE (view -> source) i see
>
> a lot of viewstate information ..
>
> i copied the whole viewstate information and pasted in text file to
> see its size..and i am totally surprised to see its size as 1.5MB !
>
> So can anybody suggest me what mistake i have done in my application
> and what measures should i take to make my application run faster ?
>
> Thanks
>
> Regards
> Raagz
MC D Guest



Reply With Quote

