Security And Passing Values

Oct 29, 2007

I pass values from a child window to a parent window as in this code. Is this secure, and if not how can I pass this data securely?

<script langauge="javascript"> function post_value(){

opener.document.editform.ownerid.value = document.lookupform.ownerid.value;

opener.document.editform.petowner.value = document.lookupform.oname.value;

opener.document.editform.ostreet.value = document.lookupform.ostreet.value;
self.close();
}
</script>

View 2 Replies


ADVERTISEMENT

Passing Values Between ASP Pages?

Mar 6, 2006

On my main page, i m having a link for a page which lets user to upload
files to a server.

On the main page itself, i am also taking some other information from
the user. Then i am mailing that data to some other user. The problem
is, i want to email the name of the file that is uploaded by a user
along with the other details. I am able to send all the details which
are entered on the main page, but how do i send the file name which i
am uploading to the server from a different page?

View 5 Replies View Related

Passing Values Through Pages?

May 23, 2010

I have the following snippet of HTML code:

<table id="identificativo">
<tr id="id_riga">
<td width="40%">

[code]....

View 2 Replies View Related

Passing Values In Functions?

Dec 19, 2010

Recently I decided to branch out and learn some Javascript on my own. I'm getting the following error: Uncaught ReferenceError: array is not defined

I don't quite understand why I'm getting this error, as I've created the array in the function showPrompt and it seems as though it's being passed around correctly. However, I believe the problem is with generateBoxes, specifically this part here:

onclick=\"getValue(array, i)\"
(line 39)

Removing array from the function parameter seems to make it execute, but beyond that, i'm lost to what is wrong.

Here's the code:

function showPrompt () {
Obtains user input
var array = new Array();
var box = prompt("Please enter number of boxes","1");

[Code].....

View 4 Replies View Related

Passing Values In A Form

Jun 25, 2001

I am trying to pass values from a textarea to an input box or vice-versa....
I am using a function to do this with the onClick method in my submit button.

The value is being passed but only for a second and then vanishes.

Any advice on this? Code:

View 3 Replies View Related

Passing Values In Functions

Mar 13, 2006

Code:

<script language="javascript" type="text/javascript">
function open_win2(var)
{
window.open("link.php?variable=var","Page","toolbar=no, location=yes, directories=no, status=no, menubar=no, scrollbars=no, resizable=no, copyhistory=no, width=545, height=600")
}
</script> .....

View 2 Replies View Related

Passing Values To Iframe?

May 20, 2011

I need to make an online payment ( external online payment provider � different domain ) through the IFRAME. I am using ajax and it seems that it is not possible or desirable to open Other sites through ajax and it also does not go with simple GET or POST to pass the data.

The part of the code is here

1 STEP: is getting to calculation page where I have a small hidden form with the infromation which I need to send to IFRAME ( payment provider)

function submitform(event) {
Event.stop(event);
Lightview.show({
href: 'ajax/calculation_page.php',

[Code]....

How can I make it possible that with the button click in this page (calculation_page.php) to open an IFRAME and also to pass the values from the form to the iframe.

View 4 Replies View Related

Passing Values To Another Page?

Jun 17, 2011

why this is not passing my values?

Code:
myloc="http://owl.ncl-coll.ac.uk/misc/Intraining/Employability_Resources/Confidence/E3_L1_Overcomoing_Hurdles/pages/actionplan.htm?

[code]....

View 12 Replies View Related

Script Not Passing Values

Feb 7, 2011

The developer who usually handles my javascript has been unresponsive in a time.[code]...

View 1 Replies View Related

AJAX :: Passing PHP / SQL Values

Sep 3, 2010

I have designed a simple AJAX form which retrieves information from a MySQL database using PHP/MySQL/AJAX. Here is the code:
HTML Page:

[Code]....

My question is, once I retrieve the information I would like to pass the information (AuxBarcode, DeviceType) as hidden fields to an HTML form. How do I do that? The purpose of this being, we have a form where some information needs to be retrieved from a MySQL database and once retrieved it needs to be passed with the other elements of this form. I just need to understand how this works before we implement it on a full fledged script.

View 6 Replies View Related

JQuery :: Passing Values That Have '&' In Middle?

May 10, 2010

have the following problem, i am using jquery ajax to search somes names in my database it work fine till the name have '&' in them, is possible to Post values that have '&' in its content?

View 1 Replies View Related

Passing Values With This Keyword Using SetTimeout

Jun 14, 2010

This following script changes style when mousing over a paragraph:
Code:
<html>
<head>
<script type="text/javascript">

[code]...

View 8 Replies View Related

Child And Parent Passing Values

Mar 23, 2006

I have a parent page who allows user to view an invoice for service. My page bases the date and the value for payment to <%now%> and to <%total_price%>.
However I'd like to permit for users to editing those two fields by opeing a popup window with a new form and asking for these two new inputs. Afterward off corse, this values need to populate the equivalent fields on the parent page.

My questions:
1)I'm opening the new window after a js confirm instead of href or onclick methods, so I don't know how to pass the parent variable ID to the child window..

The code:
if (confirmation) {return true;}else{popupwindow("invoice_editing.asp?ID="id"");}

Problem:
the parentID=request.querystring ("ID") don't work

2)My child window picks the new values from the form... but I don know how to pass back the new values to the parent page and then reload it..

Please, but as much specific as you can to my problems and also please put the whole code of proposed solution, since I'm totally lost.

View 3 Replies View Related

Passing Values From One Web Page To Other Webpage?

Jan 27, 2010

i just wanted to know how to pass values from one webpage to other webpage.i have this textfield in the form whose value is going to be same in all the webpages.so when i put this value in my first web page it should come in other web pages automatically how to do that?

View 2 Replies View Related

JQuery :: Array - Passing The Values To Another Php Page

Feb 23, 2010

I have a phpsubmission form that I am passing the values to another php page that inserts the field values from the submission form. So I added a JQuery function on my submission page like so.

function addComplaint()
{
$.ajax({
type: "POST",url: "http://oscscar02/functions/addComplaint.php", dataType: "html",
data: $("#caseNum, #formNum, #calendar, #invoice, #prodID, #serial, #prodReturn, #compText, #hazardLevel,
[Code]....

The problem is#caseNum is actually amulti value select list. Now I know how to work with this using straight up php like so:

[Code]...

View 6 Replies View Related

JQuery :: Passing ID Values To Autocomplete Text Box?

Feb 3, 2009

As a recent convert to jQuery I'm getting to grips with the jQuery autocomplete plug-ins which are available. I thought I'd replace some of my combo boxes with these as they'd be very useful and make life easier for my users.

I can understand how they work and how the values returned can be passed on via my forms, however, whilst I'd like my users to see meaningful results in the list of the autocomplete, I would like to pass on an ID for that field entry during form submission, rather than the friendly data which they see. Is there a way to show users 'friendly' information but pass on the ID to the submission script?

View 5 Replies View Related

AJAX :: Passing Values As Array To Php File?

Aug 9, 2011

Over in this thread, someone suggested a solution to an issue I was having when attempting to send multiple values per select box to a php file. You can review my original post here for reference:

[URL]

The problem is, when I change my form names to be arrays (i.e. age[] vs. age), it broke my Ajax script. I copied the original script from w3schools, and I don't really know much about javascript/Ajax to know what it is that I need to do to fix this.

Here is my Ajax script:

Code:

<script type="text/javascript">
function showResult(name,age,gender,ethnicity,facility)
{
if (name=="" && age=="" && gender=="" && ethnicity=="" && facility=="")

[Code]....

Now, when I leave my field names without the [], the script works MAHvalously. However, as soon as I add in the [] to the field names, and also update the vars to be age[].value instead of age.value, etc, it breaks.

View 4 Replies View Related

Passing Values Into Params On Html Page?

Sep 21, 2009

I am trying to pass a video id value from one javascript page to another, extract the video id, append it to a utube url and then pass it to a html page for immediate display. I have managed to extract the video id value and append it to the url but cannot get it into the html section of the code. My code is posted below

<html>
<head>
<script type="text/javascript">

[code]....

View 3 Replies View Related

Passing Dynamic Array Values To Function?

Aug 31, 2010

I want to pass dynamic array values to java script function.how its possible.

View 6 Replies View Related

Passing Values From Popup Window To The Many Page

Dec 30, 2007

Suppose that I have a main page with a link that opens a popup window which has a link with a parameter and I want to pass the parameter to a text input in the main page,
how to do that?

View 2 Replies View Related

Passing Values Of The Dropdowns To A Textbox - Datepicker

Jul 26, 2010

The datepicker is connected to three fields (drop downs for..) [Month]/[Day]/[Year]-[Datepicker(Calendar)] now I just wanted to get the dropdowns' values and pass it on a textbox (namely: selectedDate - you can see below) having a format of [mm/dd/yyy]

Code from [url]

Update three select controls to match a datepicker selection

The Dropdowns:

View 1 Replies View Related

Passing Values Of Variables Between Functions Not Working ?

Aug 12, 2010

I'm trying to trap a user entry that cannot be found in the database. When a code is entered, the page should give a "Code Not Found" message if it is an undefined value.

However, it didn't; and it always shows the "undefined" value to the page instead.

Here's what I actually did:

getting user input:

Finding the code:

View 1 Replies View Related

Cross Browser Iframes - Passing Values

Dec 10, 2004

I have a page with 2 iframes lets call them "navigation" and "main". Now in the frame navigation, if you click a link i need both frames to load a new page, lets say to google for the purpose of this example. I have the following in the frame "navigation":
<a href="#click" parent.main.location='http://google.com'">Google-ize Me</a>

Now this works all fine and dandy in IE, but the problem lies in Firefox and Netscape. It doesn't seem to work.

View 1 Replies View Related

Passing Dynamic Form Values To Javascript

May 26, 2007

I have a form that has been dynamically created from PHP. It is basically a calculator and the number of form elements as well as names of the elements can vary greatly.

I basically want to add a button that will open a new browser window with the form info being passed to it. Basically it will create a quotation for the customer that is suitable for printing.

The only way I know to do the popup window is with javascript (unless php can do it). I know how to access form elements with javascript if the form element exists, but given most of the elements may change, I do not know how to access them.

View 1 Replies View Related

JQuery :: Passing Session Values To The Mother Page?

May 3, 2011

I have a question here, I have a mother page of 2 divs, one for the category list of foods on the left and the right div is a placeholder for the selected food of the category,

Then i have a modal box, which loads the list of foods associated to the category when clicked,

What i wanted to do is, when i select a food from the modal box and click submit, I wanted to populate the selected food into the right div of the mother page, so far the farthest i went is loading the list of food into the modal window,

its like a shopping cart, but instead of redirecting your users to another page, you display all their orders on the same page... can this be achieve, im using jquery+php sessions

View 3 Replies View Related

JQuery :: Passing Values Computed In HandlerIn To HandlerOut?

Jul 18, 2011

Is there a way to pass a variable computed in handlerIn to handlerOut? jQuery("#some_id").hover( function() { var mega_menu_id = "#" + jQuery(this).attr('id') + "-mega-menu";

}, function () {
// want to use that computed value here
}); //end hover

I don't think I want globals since these functions might be called in rapid succession as a users hovers into and out of navigation elements.

View 1 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved