473,734 Members | 2,789 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Pass data to fill in form variables?

2 New Member
I'm sure this is an easy one for you old pros?
I am using filemaker to browse some records, and I have created a button in my filemaker layout that launches a web browser with a certain url. Right know, I have to manually enter 3 numbers into 3 fields of a form on that webpage. Is there a way I could pass the info in the url so that when the page loads it will have the form already filled in with my data? I have figured out how to do this with some other websites that pass the information in the url (so I just end up at the page that I want, as though I pressed the submit button), but can not figure out how to do it when a webpage doesn't pass that data in the url. How can I skip this page and just get to the destination with my data sent along in the form's 'post' method?
I'm sure I sound like a retard, but I am just a hack looking for a shortcut.
1k thanks!

The url that I need help with is here:
https://ttax.co.la.ca.us/secured_asp..._new/index.php

and i think this is the html that I can't seem to figure out:

Expand|Select|Wrap|Line Numbers
  1. <form method='post' name='pageform' action='https://ttax.co.la.ca.us/secured_asp/vcheck_new/index.php?page=main&amp;SSID=r636gmbit671k3d4ji98lce363'>
  2.         Enter <a href='http://ttax.co.la.ca.us/Proptax/Ttc/ttc/TTCAIDNum.html'>ASSESSOR'S IDENTIFICATION NO. (AIN)</a>
  3.         <br />
  4.         which consists of: Map Book, Page and Parcel.
  5.         <br />
  6.  
  7.         <table class='aintable'>
  8.  
  9.             <tr>
  10.                 <td><input type='text' name='mapbook' size='6' maxlength='4' value='' /></td>
  11.                 <td><input type='text' name='page' size='5' maxlength='3' value='' /></td>
  12.                 <td><input type='text' name='parcel' size='5' maxlength='3' value='' /></td>
  13.             </tr>
  14.             <tr>
  15.                 <th>Map Book</th>
  16.  
  17.                 <th>Page</th>
  18.  
  19.                 <th>Parcel</th>
  20.             </tr>
  21.         </table>
  22.         <input type='image' src='images/Search.gif' alt='Click Here To Search For Payment Status' />
  23.     </form>
Dec 27 '06 #1
4 5746
AricC
1,892 Recognized Expert Top Contributor
I think if you add value="MyValue" to the input tags you will achieve your effect.

HTH
Aric
Dec 27 '06 #2
AricC
1,892 Recognized Expert Top Contributor
Sorry just noticed are you doing all of this work on the server side? What are you doing with this line:
Expand|Select|Wrap|Line Numbers
  1. <form method='post' name='pageform' action='https://ttax.co.la.ca.us/secured_asp/vcheck_new/index.php?page=main&amp;SSID=r636gmbit671k3d4ji98lce36  3'>
Are you sure you want to send everyone to the same page?
Dec 27 '06 #3
ryang
2 New Member
This is for personal use really. This page gives me property tax status for the entered parcel of land. Right now I have to manually enter the 3 fields and hit the submit button to get to the destination page. If I could avoid the manual entry, I could retrieve the information 10X faster (and then work on finding a way to automate the retrieval). I am thinking there is a way to modify the code and run the page locally so that I can pass the data via the url (of the local page). Does that make any sense?
Thanks for thinking about this!

-Ryan
Dec 28 '06 #4
acoder
16,027 Recognized Expert Moderator MVP
You can't do it the way you want to because it it's a post request.

What you could do is an http request using a server side language, e.g., ASP, JSP, PHP, Coldfusion. In Coldfusion, you can use the cfhttp tag, not sure about the other languages. Then you could have a local page which has the variables in the URL and passes these as a post request. Then just display the result.
Dec 28 '06 #5

Sign in to post your reply or Sign up for a free account.

Similar topics

2
4604
by: Matt | last post by:
How to pass data back and forth between ASP and JSP page? Let's say I have Java objects, how to pass the data back to ASP page?? Or ASP has data, how to pass the data to JSP page?? Please advise. Thanks!
12
1797
by: Casey | last post by:
Yeah, I know this question was asked by someone elselike 2 weeks ago. But I need some additional help. I have a program I'm developing, and multiple different forms will be opened. For now though, I just have two forms. One is the main window, and the other sets some preferences like names, and email addresses. When someone opens this window, and enters values on this page, I'd like it to set the values of public variables on the main...
7
4451
by: Andy | last post by:
Hi, I have a complicated question that I'm hoping someone can help me out with. I have a webpage that contains a plug-in. This plug-in can communicate/pass data with the webpage that contains it via javascript. What I need to be able to do is take that data passed via javascript and, using vb.net as the code behind language, send it to a database without posting it because when I post, the plugin is reloaded and starts at the beginning....
6
5351
by: juky | last post by:
Hi all, I have 2 applications one in VB.net and the other in VC6. I need to pass data between them. How can I do it? what's the best way to implement such communication ? Any comment will be appreciate. Thank you. Juky
9
3559
by: Michael | last post by:
Hi, I have a large table. Normally, the user will need to see only the data from the past two years, but sometimes, they will need to go back further. I have a form with a datagrid, a DateTimePicker and a command button. What I'd like is when the user selects a new date and clicks the button, the grid would display data from the value in the datapicker through today. I have it working, but only if I select everything in the data...
10
1562
by: tshad | last post by:
I want to access multiple arguments based on name passed. For example I have the following asp:textboxes: BillingAddress1 BillingAddress2 BillingCity ShippingAddress1 ShippingAddress2 ShippingCity
1
2110
by: sbecke01 | last post by:
Hello, I'm running into a problem where I have a form that people can fill out and submit. That works fine. It's submitting to an Access Db on the back end. It's a nomination form for an award so people are writing volumes at times. I've allowed the end user to submit their form but then come back and edit/update to continue and resubmit for as many times as needed. The issue is, that currently I have the update form hyperlinked to...
14
3606
by: =?Utf-8?B?Umljaw==?= | last post by:
I have seen examples of passing data from FormB to FormA (Parent To Child) but I need an example of passind data from FormA to FormB. My main form is FormA; I will enter some data in textboxes and click a button to bring up FormB which needs to display values entered in FormA. Thanks in advance.
12
11101
by: raylopez99 | last post by:
Keywords: scope resolution, passing classes between parent and child forms, parameter constructor method, normal constructor, default constructor, forward reference, sharing classes between forms. Here is a newbie mistake that I found myself doing (as a newbie), and that even a master programmer, the guru of this forum, Jon Skeet, missed! (He knows this I'm sure, but just didn't think this was my problem; LOL, I am needling him) If...
0
8776
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
9310
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
8186
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
6735
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6031
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4550
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
4809
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
3261
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
3
2180
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.