form

Input Type=Image "On" without onclick event

I have a form with an input type=image. It used to have a confirm in its onclick that returned true/false allowing/stopping the form submit. I've recently 'upgraded' to a non-modal dialog with a callback handler. Since the callback handler is non-modal, the return value to the input is always false, don't submit... When I submit upon...

PHP + POST an HTML form from inside an iFrame and redirect parent

Hello, I'm wondering if it's possible to do the following: have an iFrame inside of an HTML page. Inside the iFrame, I have a 'Pay with PayPal' button. When that button is clicked, and thus the HTML form is submitted to PayPal, I want the parent page to redirect to PayPal, rather than just the iFrame. Is this possible? Thanks! ...

.NET form - setting location changes size

I'm working on an app that shows its forms as a series of modal windows stacked on eachother. All forms are placed to the center of the screen. When the user moves the form around the screen, only the topmost one moves, others remain at the center and cannot be moved as they are blocked by the topmost dialog. I'm trying to code a form-m...

editing mysql table with html form

My aim is to have a simple, form based CMS so the client can log in and edit the MySQL table data via an html form. The login is working, but the edit page isn't returning the values from the MySQL table, nor am I getting any errors. I'm still amateur, and I first started the following code for a class project, but now plan to implement...

Redirect user to directory based on form input

I know enough about the coding end of web design to be embarrassed by what I don't know. What I want to do is to have various print promotions in newspapers and what not along the lines of: for more information please visit www.mysite.com/2345. If the visitor doesn't enter the entire url in the nav bar and ends up at the main index, I w...

HTML - form field is not sent when containing special characters

I have a <form> with several text inputs and a textarea. The documents Content-Type header is text/html; charset=ISO-8859-1 and in the <head>-part I have a meta-tag with the same content-type: <meta http-equiv="Content-type" content="text/html;charset=iso-8859-1" />. But when I type some special characters in one of the fields (like äüüß...

I want a html link and <form> element appearing in the same Line...

This is my html code: <img src="http://127.0.0.1/bookManagementProject/asset/images/mainLogo.gif"&gt;&lt;a&gt; <br> <FONT SIZE=3 FACE="Arial"><br>&nbsp&nbsp&nbsp <a href = "http://127.0.0.1/home.html" <b>Home<a> | <a href = "http://127.0.0.1/login.do" <b>Login</a> | <form method="get" action= http://flyingame.gamehost.org:8080/search....

What language to use - simple form + MySQL + admin page

Hi everyone, Apologies if this is not the right place to ask but here goes... What should I use to create a simple web application for our website? I'm the IT guy for a small non-profit. On our website we have a page with a large form in which users can fill out information on an application form. The information gets sent to a MySQL ...

How to prevent form replay/man-in-the-middle attack in PHP, csrf, xsrf

I have a web form and I'm using PHP. I'm aware that forms can be manipulated (I believe it's called replay attack or a man-in-the-middle attack). So I'd like to use some authenticity token as a hidden field. The threat possibilities that I'm aware of are: Attacker hijacks the legitimate user's form (this I believe is the man-in-the-m...

pass a form value to another form on a different page without using url variables (javascript)

Hi I have a form on a page and I want to pass a form inputbox value to another inputbox on another form on another page without using URL variables - is this possible? They both share the same header page section if that is of any help. Thanks Jonathan ...

input box without a form

I need to have an input box in a div without a form and when the user enters something and hits return it runs a javascript function there will be no submit button. how do I do this? Thanks in advance of your help. Jonathan ...

why does this not work in IE - form submit problem

I have this working in all browser except IE. Why does it not work? Here is the site The form code is here: <FORM name ="frontpagequestion"> <input class="" type="text" name="questiontitle" value="ask your question and press enter" onfocus="if(this.value == 'ask your question and press enter') {this.value = '';}" onblur="if (this.valu...

drupal contact form module

I'm a beginner to drupal and try to use drupal contact form module but it restricts user at-least for an hour to send second post. Is anyway to overcome this limitation? ...

Submitting Form to Handler is not working

Hi, I am trying to submit a form to a handler page but nothing is working now, it doesn't even hit the handler... Here is my code : <form action="Unsubscription.ashx?actionmethod=subscribe" method="get" > <div class="h1"> <input type="text" class="input" value="enter your e-mail" name="ekey" /> <input type="submit" value="Submit" /> ...

How can I get all controls from a Form Including controls in any container?

I need for example to disable all buttons in a form or validate all textbox's data... any Ideas.. thanks in advance!!! ...

How can I make a form transparent according to a PNG image?

So, I have a png file that uses transparency(is actually a circle with gradient effect from black, in the middle, to transparent on the margins). I am putting this on a form using TImage. I am setting TForm1.Color and the TForm1.TransparentColorValue to the same value and TForm1.TransparentColor:=true. Now, when I run the program the gr...

In windows server 2008, application's login form is not getting activated

My application is developed in C# windows. On executing the application in Windows XP, login form is getting activated properly and focus is set to UserName_TextBox. But in windows server 2008, login form is not getting activated. only after clicking on the login form, its getting activated. I have tried code like... this.Activate(); t...

quickest way to display data

I have several forms in one HTML page... I have to filter these forms somewhere... (eg check if all or some form elements have values etc...) I am using ajax to submit the forms, but i dont know if i should filter it before submitting it to my php file, or filtering it inside the php file? I want the fastest way for the data to show u...

jQuery POST request - submitting a <form> inside of an <iframe>

I'm creating a quick prototype as a proof-of-concept for a bigger project. I need to create a working cross-domain POST request, and I have jQuery available. Since I'm assuming (please correct me if I'm wrong) that $.ajax() will not work because the page making the POST request lives in a different domain than the server receiving the r...

WPF App - How to obtain a reference to the corresponding System.Windows.Forms.Form?

In my WPF Project I have a WPF Window. I want to use Sticky Windows Solution in my WPF Project. The library wants only one parameter: the System.Windows.Forms.Form object. Does it exist any way to obtain a Form object starting from a WPF Window object? ...