0
votes
2answers
56 views
How do I use a hidden value more than once in the same controller method/view?
I have a method that list listing directories and you can drill in the directories. The method looks like this:
public ActionResult ListObjects(string Prefix)
…
2
votes
5answers
186 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="hidd …
0
votes
5answers
318 views
How to pass a hidden field from one page to another?
I have a .Net class library. I want to pass a hidden variable from once code behind page and fetch it in another code behind page.
PLease note I dont have any design page(aspx page …
0
votes
6answers
1k views
Passing hidden field from one page to another in querystring
I want to pass a query in a hidden filed from 1 page to another by querystring.
Can anyone help me out with the logic?
0
votes
3answers
249 views
ASP.NET: JavaScript modifying the value of a HiddenField before submitting
I have looked at similar questions on Stack Overflow but haven't been able to find the solution to this particular problem. I have a simple (not really, but let's pretend) ASP.NET …
1
vote
6answers
123 views
SQL Server Database - Hidden Fields?!
Hello!
I'm implementing CRUD on my silverlight application, however I don't want to implement the Delete functionality in the traditional way, instead I'd like to set the data to …
0
votes
3answers
370 views
How to pass an array as a hidden field?
I am implementing an auto complete box using the Ajax.autocompleter method of the scriptaculous.js framework.
This is the auto complete box and the div where the auto suggested en …
1
vote
4answers
118 views
What does the __VIEWSTATE hold?
I'm sorry for maybe making such a basic question but in ASP.NET websites what does the __VIEWSTATE input field represent?
Also, is there any way to compute it's value (based on th …
0
votes
4answers
2k views
Jquery Hidden Field in Table
Hi all,
I was wondering if anyone knew of a way to access a hidden field (by client id) within a table row using jquery.
$("#tblOne").find("tr").click(function() {
va …
1
vote
4answers
425 views
change field value when select radio buttons
I want to change the value of hidden input field when radio buttons selected :
<input type="radio" name="r1" value="10" />10
<br/>
<input type="radio" n …
0
votes
1answer
141 views
Hidden field value is lost if the Validation fails strut2
i am using strut-2.1.6
I have a view page wich contains the Primary key of the currently viewed record in a hidden field. If i post this page to Save the record and any validation …
0
votes
1answer
238 views
iphone Consistently Hide Some Text in a UITextView
I have a UITextView that I'm trying to keep hidden from the user, except I'm using it's autocorrect interface so I can't just put it's hidden property to true.
Currently I am putt …
1
vote
4answers
268 views
How can 2 Html forms share 1 hidden field?
I have a page with 2 forms and a hidden field that is outside of both of the forms.
How can the hidden field be submitted with either of the forms?
I thought about doing somethin …
0
votes
4answers
225 views
Javascript question: How do I duplicate user input into a hidden field?
How can I pass input from a text-type input element into a hidden input element in the same form on a site that has jquery installed?
1
vote
3answers
318 views
Accessing C# Variable from Javascript?
In my MS SQL table, I read in an "time_zone" for a city from a record.
I then want to use this time zone in a Javascript function to create a digital clock for that city.
Current …
