1
vote
4answers
39 views
ASP.NET datasets and memory
I am using framework 2.0, and I don't understand how the datagrid and the datasets works after doing a postback. In msdn says that there's no need to do a databind again if the req …
1
vote
5answers
48 views
Something like viewstate and session
The problem that I am having is as follows:
I currently have a custom class that generates buttons and places them on a placeholder on a master page.
The events for these buttons …
0
votes
1answer
21 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
47 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
43 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
55 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
31 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
38 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 …
0
votes
3answers
80 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 …
1
vote
6answers
105 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
1answer
36 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
1answer
33 views
Problems with Viewstate corruption.
I'm getting errors in a few of my pages:
Error Message: Invalid character in a Base-64 string.
Error Source: mscorlib
Error Target Site: Byte[] FromBase64String(System.String)
Er …
0
votes
4answers
36 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 …
0
votes
2answers
59 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 …
0
votes
2answers
41 views
Disable viewstate loading for child controls
I have a lot of web controls created dynamically in an ASP.NET page. In certain postback scenarios (when I click a LinkButton), I want to skip the loading of the old tree of web co …
