Tagged Questions

7
votes
4answers
1k views

Which is best to use ViewState or hiddenfield

I have a page in which I want to maintain the value of object between post backs. I am thinking of two ways to maintain the value of objects Store the value in View Sate Store the value in ...
3
votes
4answers
94 views

When should I consider to use SessionState to keep my variable values?

Is is possible to say something like "If you have those situations then SessionState is a must to use for storing your values between postbacks." Can you list me the basic reasons which forces an ...
3
votes
5answers
2k views

Hidden Field losing its Value on postback

I have a ascx page where I am using a hidden field to store the value of a the drop down box as it is generated using a google address finder. My problem is that when I try to store the value directly ...
2
votes
3answers
48 views

Value is not found in boundfield in gridview?

I am trying to assing value to hiddenfield on indexchange event of dropdownlist ! Actually the problem is when I am trying to update my record i can not find value of that hidden field ! Kindly give ...
2
votes
2answers
265 views

How to get and set a value to and from an asp HiddenField

I want to add a Boolean value to a HiddenField ASP.NET controller so that the value can be retained after postback. Here is my code: Public Property IsAddingNewCause() As Boolean Get ...
2
votes
1answer
992 views

Object reference not set to an instance of an object

I am trying to assign values to the hiddenfields duting page_load..but its throwing System.NullReferenceException.. This is the code iam using in the page_load event.. Protected Sub Page_Load(ByVal ...
1
vote
8answers
67 views

Get the Value of an asp:HiddenField using jQuery

I have two pages. From the first page, I open a modal with a querystring that holds that value of a client name. I then use this to set a hiddenfield on the modal that opened. I need a TextBox on the ...
1
vote
0answers
73 views

Binding hidden fields in formview

I am trying to use a formview bound to an ObjectDataSource, in the formview I use a couple of hidden fields which hold values required for an insert. I set the value of these fields server side ...
1
vote
2answers
104 views

HiddenField Cannot be Referenced in CodeBehind file

I have the following HiddenField in my ASP.NET 2.0 webform: <asp:HiddenField ID="HiddenModel" runat="server" OnValueChanged="HiddenModel_ValueChanged" /> My codebehind references HiddenModel ...
1
vote
3answers
248 views

Value of a HiddenField not updating

I've tried both of these: <asp:HiddenField ID = "selectedHour" runat="server" Value="blahblah" /> <input type="hidden" id="myHour" name="hour" Value="blahblah" runat="server"/> ...
1
vote
1answer
1k views

use Repeater Item index in Hidden Field

How to set Item index in a Repeater Column with Hidden Fields in asp.net. I wrote the following code but it does not show the index value in hidden field. <ItemTemplate> <tr> ...
1
vote
1answer
621 views

UpdatePanel + AutoCompleteExtender + jQuery = Problems!

I've got an ASP.NET web form which uses UpdatePanels to allow partial page postbacks. Within one of my UpdatePanels, I'm using the AutoCompleteExtender from the AjaxControlToolkit to call a WebMethod ...
1
vote
2answers
1k views

How can i bind a Database field value to a hidden field inside a gridview

I use the following to bind a field from the table to a hidden field inside a gridview but i am getting the error as System.Data.DataRowView' does not contain a property with the name 'AccountType'. ...
1
vote
3answers
7k views

Access hiddenfield using Jquery

I have a page that's derived from a master page. On this page, I have a hiddenfield ("hfUser"). How can I access this "hfUser" control and get/set its value using JQuery? I've tried variants of this: ...
0
votes
1answer
181 views

Hiddenfield WebControl

foreach (var item in AnketSoru) { r = new HtmlTableRow(); c = new HtmlTableCell(); c.InnerHtml = item.new_question_text.ToString(); ...
0
votes
2answers
1k views

HiddenField Value Lost on Postback

I have some JavaScript that sets the value of a HiddenField and then forces a postback. I can trace through this JavaScript and it appears to work correctly. However, when I test the value of the ...
0
votes
7answers
305 views

using hidden fields a good idea? (ASP.NET, C#)

In an application, I draw some data from a database which will be used by several methods. Is it a good idea to write the data to hidden fields when first drawn or should I draw the data again when ...
0
votes
1answer
1k views

How save object to HiddenField in ASP.NET?

I have updatePanel and hiddenField in it. I need to save object to hiddenField without full pastback (only updatePanel updating). ViewState can't help, because it works only with full postback.
0
votes
2answers
1k views

how to set Name attribute for HiddenField control server-side?

I want to set the "name" attribute for HiddenField control of ASP.NET from code behind, but I cannot find the "Attributes" property. Is it not there for a purpose? How do I add the attribute? thanks
0
votes
1answer
743 views

How might I clear a hiddenfield value when the page is refresh in ASP.NET?

How can I clear the value of an asp:HiddenField control when the user hits the refresh button in the browser?
0
votes
3answers
752 views

ASP.Net - How do I add a HiddenField from another WebControl and maintain it?

I've got a WebControl that I want to dynamically add a HiddenField from. I've tried the following example: Click here, but that doesn't work due to the fact this.Page.Form is null in the Page Init ...