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 ...
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 ...
1
vote
2answers
54 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
3answers
225 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"/> ...
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
165 views

Hiddenfield WebControl

foreach (var item in AnketSoru) { r = new HtmlTableRow(); c = new HtmlTableCell(); c.InnerHtml = item.new_question_text.ToString(); ...
0
votes
7answers
282 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
3answers
706 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 ...