Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

12
votes
4answers
10k views

HTML form with multiple hidden control elements of the same name

Is it legal to have an HTML form with more than one "hidden" control element with the same name? I expect to get the values of all of these elements at the server. If it is legal, do the major ...
9
votes
8answers
22k views

Jquery issue- can't set hidden field value

So, I'm going crazy for this. I have a simple input field inside a form tag. <body> <form action="#"> <label>Input</label> <input type="hidden" id="foo" ...
7
votes
3answers
1k views

ASP.NET MVC - Secure Temporary Storage of Credit Card Data

I have a checkout process for a shopping cart that is currently storing credit card data in the session for retrieval once the user finalizes the purchase. The purchase process is set up such that the ...
5
votes
6answers
717 views

How to detect hidden field tampering?

On a form of my web app, I've got a hidden field that I need to protect from tampering for security reasons. I'm trying to come up with a solution whereby I can detect if the value of the hidden ...
4
votes
2answers
136 views

Eliminating the Need For Hidden Input Fields

I have several hidden input fields used to hold coordinates calculated by javascript. The purpose of these fields is to pass the coordinates when the form is submitted. I am using an AJAX request ...
4
votes
3answers
297 views

Why does the reset button on html forms not reset hidden fields?

While answering another question, which asked whether the reset button cleared hidden fields, I discovered something surprising: <html> <head> <script type="text/javascript"> ...
4
votes
4answers
1k views

Passing hash as values in hidden_field_tag

I am trying to pass some filters in my params through a form like so: hidden_field_tag "filters", params[:filters] For some reason the params get changed in the next page. For example, if ...
3
votes
1answer
39 views

Can i replace ViewState with hidden fields?

Can i replace ViewState with hidden fields? ViewState["temp"] = "1"; <asp:HiddenField ID="hdnfield" runat="server" /> with EnableViewState="false". hdnfield value is stored at ...
3
votes
1answer
73 views

Java Swing: Audible sound when altering hidden UI element on unselected panel of JTabbedPane

I'm new to Java, so I'm having a hard time tracking down an answer to this on my own. I'm writing a Java application, and I'm using Swing. I'm not sure if it's relevant, but I'm using Netbeans as my ...
3
votes
1answer
71 views

Partial view html code is not rendered

Can anyone tell why the hidden value html is not rendered ? The debugger steps into the conditional, but hidden field is not on the page. <% if (ViewData[Constants.ViewDataKeyandValues.Page]!= ...
3
votes
2answers
1k views

Hidden value assigned in js lost after postback

Here's my problem. I have a hidden field whose value I change through a javascript method. The problem is after postback the value is lost. How can I persist the value after postback? Thanks! .aspx ...
3
votes
2answers
143 views

How to gracefully die?

So I've just read Why to never use 'or die'. I am more confused then ever. I am validating a complicated form and I go though many nested levels of if statements and what not and I am passing a ...
3
votes
2answers
204 views

How do I get ViewData inside a form to display correctly?

<%:ViewData["galleryId"]%> <% using (Html.BeginForm( "FinishEdit" , "GalleryManager" , FormMethod.Post , new { enctype = ...
3
votes
2answers
384 views

Classic ASP form post with sensitive fields

helping my friend with his old ASP site and ran into an issue so I wanted to throw this out to see if i can get some help. The site basically needs to POST data to another page which it's doing fine. ...
3
votes
1answer
2k views

How do I use hidden_field in a form_for in Ruby on Rails?

I've read this, but I'm new to RoR so I'm having a little trouble understanding it. I'm using a form to create a new request record, and all of the variables that I need to send exist already. Here is ...
3
votes
4answers
2k views

Post newline/carriage return as hidden field value

I need to post multi-line data via a hidden field. The data will be viewed in a textarea after post. How can I post a newline/carriage return in the html form? I've tried \r\n but that just posts ...
3
votes
4answers
3k views

ViewState or HiddenField

If I have a simple piece of data to store (an integer or string for example) I might choose to store that in ViewState, or using a HiddenField control. Why would I choose one over the other? ...
2
votes
2answers
106 views

jQuery+ASP.NET: click = value in hidden field, clicking too fast

I'm binding a click event to a hyperlink. Onclick the value (innertext) of the hyperlink is saved in a hidden field. With this value I'm working after page reload (ASP.NET). It works - but the problem ...
2
votes
6answers
71 views

How to get the values of html hidden wrapped by a div using jquery?

Im very new to javascript and jquery so please bear with me. Here's my code: http://jsfiddle.net/94MnY/1/ Im trying to get the values of each hidden field inside the div. I tried ...
2
votes
4answers
70 views

Detect that a hidden form field has changed?

I am using a hidden form field to store the current record that an user is editing. How can I prevent the user from changing that field? Would MVC3's anti-forgery helpers work, or do I need to roll my ...
2
votes
2answers
152 views

What are Oracle hidden fields?

ALL_TAB_COLS differs from ALL_TAB_COLUMNS in that hidden columns are not filtered out. What are hidden fields? This view differs from "ALL_TAB_COLUMNS" in that hidden columns are not filtered ...
2
votes
1answer
2k views

access hidden field within gridview control to set a value in javascript?

I've got a gridview with a bunch of template columns. One of those columns is a hidden column that either has a value of 0 or 1. If a row in a grid view is changed I set the value to 1, otherwise I ...
2
votes
2answers
549 views

Rails hidden field

I wanna do something like this in rails Here is what I have so far in rails: <%= form_for @order do |f| %> <%= f.hidden_field :service, "test" %> <%= f.submit %> <% end ...
2
votes
3answers
165 views

In ASP.NET, how to prevent tampering for a hidden field value

I have a user control with a few dropdowns. I refill the dropdowns using ajax whenever one of them is changed based on the new selected value. The value of one of these dropdowns is the final value ...
2
votes
2answers
161 views

What is a good way to edit two values with a single ASP .NET MVC dropdown?

A record is uniquely identified by its Kind and RecordId. I have a set of records that I want to display as a dropdown, and on submitting I'd like to get SelectedKind and SelectedRecordId for ...
2
votes
5answers
224 views

Large viewstate in HTML source

This is 10KB in my HTML source: <input type="hidden" name="__VIEWSTATE" id="__VIEWSTATE" ...
2
votes
3answers
139 views

jQuery: How can I assign a varible back to a hidden element in the document?

How can I assign a variable (button id that was clicked), to the jQuery Diaglog, then back to the hidden element (myhiddenid) in the document for later use? <table border="0" class="time_data"> ...
2
votes
3answers
378 views

Integrity of Hidden Fields: Asp.NET mvc

we have been using asp.net mvc for development. sometimes, we need to put some hidden fields on form that are shoved in the model by modelbinder (as expected). Now a days users can easily temper the ...
2
votes
2answers
378 views

Reference hidden field generated from jQuery from C# with ASP.NET

I am using Drew Wilson's AutoSuggest jQuery plugin http://code.drewwilson.com/entry/autosuggest-jquery-plugin with ASP.NET. I'd like to be able to reference the hidden field generated by the plugin ...
2
votes
2answers
10k views

asp.net hidden field not retaining value when updated from code behind

I'm using a hidden field to store a value in an asp.net page. Basically I set the value of the hidden field whenever a value on the form is changed i.e. first name, date etc. The field is on a webform ...
2
votes
2answers
3k views

Rails hidden field in form_for not sending parameters to controller

Hey Guys I have a form_for I'm making in my view helper that is going to let one user promote another user from a group. def promote_button_for(group, user) membership = group.get_membership( ...
2
votes
2answers
1k views

How to Auto Submit form using PHP

I am currently developing a website where I am facing the following problem: I tried passing the User id and password to the login page and auto submit the page using a script, which will take the ...
2
votes
2answers
527 views

Calling event with HiddenField in ASP.NET without scripts

Looks like the "asp:HiddenField" doesn't have an "AutoPostBack" property, and I'm having problems with the "OnValueChanged" event... I need to call a function (C#) when I populate the hidden field, ...
2
votes
6answers
2k views

Does form with enctype=“multipart/form-data” cause problems accessing a hidden field

I have created a hidden form element <form name="UploadImage" enctype="multipart/form-data" method="post" action="UploadImage"> <label> </label> <input ...
2
votes
1answer
2k views

JQuery Autocomplete hidden field

I received help on the first part of my problem here whoever I forgot to mention my second issue. After a user selects a value from the autocomplete field I would like to populate the vaules ID into a ...
2
votes
5answers
4k views

Jquery Hidden Field

Why cant i get the value ofthis hidden field? I have a control... <asp:HiddenField ID="HiddenFieldServerDateTime" runat="server" /> Which rendwrs as... <input type="hidden" ...
2
votes
5answers
3k views

hidden field is null on !IsPostBack and not null on IsPostBack

First I'll apologize for the unclear title of my question. I wasn't sure how to succinctly describe my problem in a title. I have a hidden field in my .aspx <input type="hidden" name="hid1" ...
1
vote
3answers
37 views

Confusion on the Use of Hidden Fields for Persisting Data

I'm a little confused on how to use hidden fields for persisting data in my MVC application. (I am also open to using Session if that makes sense.) Basically, I have an application that asks a series ...
1
vote
1answer
90 views

how does the hidden field keep its value on post back

Does any body have any idea how does the hidden field keep its value on post back when it is value is set from javascript and not from the server side code? Can I create a text box that has this ...
1
vote
2answers
136 views

Cached hidden input value is being used in IE9 instead of updated value

I have an issue with IE9 using the initial value of my hidden input element instead of the dynamically updated value. I have created the following so that you can see my issue live: ...
1
vote
1answer
137 views

hidden field not working in zend form

I have a "date_created" field in database and I want to make it hidden in form and current date add in mysql table. I am working in zend form and below code for date_created element is not working. ...
1
vote
1answer
74 views

Pass an JavaScript object to a HIDDEN input field, and catch it as an array/object on the Server-Side

I have a field on my page, like this: <input type="hidden" name="myField" id="myField" /> and I have a piece of code that looks like this: $(document).ready(function() { var myObject = { ...
1
vote
0answers
318 views

ExtJS - Hiding ComboBox based on other Combo value

I'm having a weird issue where I'm defining a combo has hidden:true, which works fine, but when I show the combobox and select a value from it, it hides. Here's some example code: (I'm using some ...
1
vote
2answers
574 views

gridview row update only when changed, javascript not changing value :(

I've got a gridview (ASP.net) inside of an update panel. I also have a "Save" button so that when I click "Save" it loops through all the rows of a grid view and passes the data to a stored procedure ...
1
vote
1answer
124 views

Hidden Field converted to phone number link on iPad and iPhone

I have a hidden field on my page that has a number in it and ipad/iphone tries to make it into a phone number link - making me unable to submit the form (potentially dangerous). If it is a hidden ...
1
vote
1answer
79 views

How to keep state of typed viewmodel objects in partial views?

Hi, I have a Strongly typed view in ASP.NET MVC. To keep track on properties of the model when thay are not connected to a field(ex TextBoxFor) I will have to use a HTML.HiddenFor element. This makes ...
1
vote
1answer
129 views

Show different content after page refresh

A .php page checks if the referer is from xdomainname.com, if Yes i iframe page X if not i iframe page Y. The problem is i want to redirect to another page if the .php page is refreshed (iframe page ...
1
vote
2answers
400 views

Set the Value of a Hidden field using JQuery

I want to set the value of a hidden field, using JQuery. Hidden Field: <input id="chag_sort" type="hidden" name="chag_sort"> My JQuery: $("#input[name=chag_sort]").val(sort2); What am I ...
1
vote
2answers
643 views

assigning an array value to a hidden field in jquery

Sure I'm missing something simple here. I'm trying to assign a value to a hidden field via jquery. It keeps returning nothing and I've tried several things. I have an array on a form called ...
1
vote
1answer
908 views

ASP.NET Hidden Field Value not modified on callback

I'm changing the value of an asp:HiddenField during callback. <asp:HiddenField runat="server" ID="hiddenField" Value="old value" /> private void Page_Load(object sender, EventArgs e) { if ...

1 2 3 4