0
votes
1answer
14 views
ASP.NET DataTable output problem
I can't for the life of me work out what I am doing wrong here, despite much searching on SO/Google.
Basically I have a simple DataTable which is held in ViewState and adjusted du …
0
votes
2answers
36 views
Viewstate of ascx lost between postbacks
In my ASP.NET application, I am loading an .ascx dynamically using LoadControl, using the following pattern:
var ctrl = LoadControl("/path/to/control.ascx");
((ControlType)ctrl).S …
0
votes
3answers
34 views
Accessing controls added programmatically on postback
On postback: How can I access ASP.NET controls in my code-behind file, which are added programmatically?
I am adding a CheckBox control to a Placeholder control:
PlaceHolder.Cont …
-1
votes
2answers
53 views
Error using viewstate (in a cluster?)
I am getting the follwing error,please tell me why this error is coming
Validation of viewstate MAC failed. If this application is hosted by a Web Farm or cluster, ensure that < …
1
vote
2answers
28 views
Can I change the browser URL while maintaining ViewState in ASP.NET?
I'm doing some brainstorming for a portal framework, and I'm envisioning a breadcrumb navigation stack that is tracked via the ViewState (so that if the user clicks "back" in their …
0
votes
3answers
35 views
can we store viewstate in masterpage?
Example
I have a gridview having multiple customers.
When a user clicks on the customer link then the CustomerId is stored in the Session "CustomerId".
if i open multiple custome …
1
vote
6answers
97 views
Viewstate - utter confusion.
This has me totally puzzled, can anyone explain this?
Markup:
<form id="form1" runat="server">
<asp:TextBox runat="server" ID="txtTest" />
<asp:PlaceHolder runat=" …
0
votes
3answers
64 views
ASP.NET - VB.NET - Persist a GridView’s dynamically chosen DataSourceID over multiple button clicks
I have an app where I need to dynamically choose an SQLDataSource for a GridView so I can use 1 of 2 stored procedures, depending on who is logged into the system.
My problem is …
0
votes
1answer
33 views
Why is ViewState lost when a control’s property is modified during its parent’s Control.Render method?
I have code like the following in a UserControl:
Protected Overrides Sub Render(ByVal writer As System.Web.UI.HtmlTextWriter)
If someCondition Then
childControl.Enable …
0
votes
0answers
34 views
Part of View State information showing in Google Chrome because of script tag in it
I can see part of viewstate information showing at the top of my page if open it with Google Chrome. (screenshot)
this is what I see at the top of my page:
H+8jD319X/pEahjAmEbvj …
0
votes
2answers
28 views
Using SavePageStateToPersistenceMedium() for Master Page ASP.NET
VS 2005, ASP.NET with C#, Windows XP, II6
Hi,
Please refer to the topic http://www.codeproject.com/KB/viewstate/SaveViewState.aspx. The topic demonstrates how you can save ViewSt …
0
votes
2answers
48 views
Validation of viewstate MAC failed
Dear All,
Help me how to solve this problem.
Error Time : 20091104 151412
Error Message : Validation of viewstate MAC failed. If this application is hosted by a Web Farm or …
1
vote
3answers
47 views
Resolving viewstate/namespace conflicts
Hi, I have a listbox control. When the user clicks it, it tells a custom control to use a certain ID to use.
The custom control draws the same thing everytime(dynamically), just l …
0
votes
4answers
33 views
Need help in asp.net viewstate
Hi all,
Pls somebody help me with viewsate. Suppose i have created two forms. First form contains First name and Last name and one button called NEXT. And Second form contain two f …
2
votes
3answers
61 views
Can a datareader be stored in a viewstate?
Hi all,
Can a datareader be stored in a viewstate?
What data can be stored in viewstate?
