HTML forms are used to pass data to a server. A form is essentially a container that can be used to hold any amount of any subset of several types of data.
0
votes
0answers
12 views
C# NEWBIE, Easiest way to contain values like an Array or Class?
Please note I am extremely new to C#, so don't suggest other ways that need a lot more code!
Making a BlackJack game, need to contain my deck values.
What would be the easiest way to contain my ...
0
votes
0answers
12 views
Invalid use of group function with MAX
$query = mysql_query("SELECT `text` FROM `text` WHERE `id`=max(id)");
if(!$query)
die(mysql_error());
while($row ...
0
votes
1answer
37 views
Redirecting issue using header(“Location: url.php”) or form action
When using header("Location: url.php), the URL does not change to the new page, in our case login.php (so when refreshing it will just go back to the login page). If the page is placed in action in ...
0
votes
0answers
11 views
form with select field drop down does not work help, please
I can not get the following code to bring up the selection list based on the following code to run in php file: (just building form so the action and validation steps are not in yet...
<form ...
1
vote
2answers
77 views
SEO for form tag
I am trying to make my dynamic content visible to search engines. I understand that I need to use method="get" for best results. Security is not a concern for this portion of my forum, I'm simply ...
0
votes
0answers
9 views
Kendo UI - where to put the <form runat=“server”>-Tag?
I'm trying to build a Kendo UI mobile-Application which includes severals views. In each view I need a -tag. Is there any way to realize this?
Only one < form > like in this example
...
95
votes
6answers
160k views
jQuery AJAX submit form
I have a form with name orderproductForm and an undefined number of inputs.
I want to do some kind of jQuery.get or ajax or anything like that that would call a page through Ajax, and send along all ...
1
vote
3answers
212 views
Nested form losing data
Sadly loses my form after unsuccessful validation the data which have the user typed in. How can I change this, so that the form doesn't losing the data?
View _form.html.erb:
<%= form_for(@user, ...
2
votes
6answers
3k views
CSS on input boxes
I have an issue on styling different form fields with CSS
I have a CSS code:
#form input {border: 1px solid #FFFFFF;font-size: 16px;padding: 5px;width: 200px;}
Now this code styles all three of ...
2
votes
2answers
1k views
PowerShell v3 Invoke-WebRequest: Troubles with forms
Since I upgraded to Windows 8 a lot of my PowerShell scripts relying on launching an invisible IE won’t quite work anymore, so I tried switching to the Invoke-WebRequest command. I did a lot of ...
0
votes
0answers
8 views
asp.net mvc 4 (razor) form submit not working
I'm creating a form using Ajax.BeginForm but when i hit the submit button nothing happens. I look in the network tab in the debugger toolbar and no request is fired and there is no error in the ...
0
votes
0answers
24 views
strange ajax form issue
I'm using a contact form plugin which is submitting through AJAX.
Now, the strange thing is that if I upload it on a folder on which I have some php files the form is not submitting through ajax.
...
1
vote
1answer
289 views
Symfony : entity field validator and ajax dynamic content
I have 2 entities (A and B) with a Many to One relationship between them.
I create my form with the A entity and i use an entity field (dropdown list) to display the rows in the B entity. I use a ...
0
votes
1answer
22 views
Checkbox not staying checked in rails form
I have this in part of my form_tag
%input{ :type => "checkbox", :name => "form", :value => "#{@t.form}"}
It saves to the database as 1 when i check it the first time, but then if i ...
1
vote
3answers
29 views
How should I handle edit and update action when I use Form Object?
I have following form object to managing complicated nested form.
Form
= simple_form_for(@profile_form, :url => profiles_path) do |f|
...
Routes
resources :profiles
Controller
class ...