Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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
90 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
4answers
1k 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
35 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
229 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
869 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
2answers
46 views

HiddenField Value property back to empty when “postback” using AJAX UpdatePanel

I have been working with this issue for hours and cant find a solution. Now Im working in a web Application and my first problem was that I wanted to create an XML dynamically...Then I realized that ...
1
vote
8answers
51 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
1answer
28 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
72 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
222 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
853 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
554 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
6k 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
0answers
19 views

hiddenfield value is passed as undefined during onchange event

For somereason my hiddenfield value is being passed as undefined even though the value has been set Heres my hidden value <asp:HiddenField ID="HiddenField1" runat="server"/> This is my ...
0
votes
0answers
17 views

jQuery validation 1.9 ignores hidden

by default 1.9 has this state $.validator.defaults.ignore = ":hidden" Which is really wierd, why ignore elements by default? If i have added html5 validation attributes to my DOM i want them ...
0
votes
1answer
61 views

MVC3 Html Hidden Size limit?

Is there a size limit that the HTML.Hidden can take ?I have the following code, which works when i only put ViewData["key"]="12345" but when the "12345 is too much data the htmlfield is empty. ...
0
votes
0answers
139 views

Validate required MVC3 hiddenfor() field

I'm trying to validate a hidden field that is updated from an external jQuery call. Model: [Required(ErrorMessage = "UserId is required")] public int? UserId { get; set; } Master Page: ...
0
votes
1answer
52 views

ASP.NET 4.0 HiddenFields

HiddenField hidCurrentFooterLinks = (HiddenField)gvTaxonomy.FindControl("hidCurrentFooterLinks"); hidCurrentFooterLinks.Value = txtFooterLinkCurrentYear.Text; HiddenField hidPreviousFooterLinks = ...
0
votes
1answer
164 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
1answer
357 views

Problem Binding to GridView HiddenField

EDIT: I added in the hf from the first reply that was pointed out. This helped with a few other issues, but still did not fix the problem. I am trying to bind a list to a gridview with a LOT of ...
0
votes
3answers
299 views

Getting value of a hidden field in Rails with JQuery

I have a problem in my Rails Project. It runs on Rails 2 by the way. <%= form.hidden_field :foo %> Is it possible to get the value of this hidden field with jQuery? Maybe something like this: ...
0
votes
7answers
280 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
694 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
699 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 ...