Sumbit A Form With A Link To Search A Database?

Dec 21, 2009

I know this is a combination of asp and javascirpt so bear with me. Can I use a hyperlink to submit a form that can look data up in a database? I am going to have a page that has a bunch of links that will link to other pages. However all the pages are in a database, and I need to look it up via another page to pull up the right page.

<form action="../forms/selectpage.asp" name="form1" method="post">
<td> <a href="java script:document.form1.submit();">page1 </a> </td>
</form>

The only way I can think of is to use a hidden text field to submit when the user sumbits and each link be it's own form, but that's a lot of extra code. If anyone is curious- the look up page is this

Set oRs=Server.CreateObject("adodb.recordset")
strSQL = "SELECT * FROM Pagetable WHERE Location = '" & selected & "' "
oRs.Open strSQL, connforms

Selected would be the data being transfered from the linked page.

View 1 Replies


ADVERTISEMENT

Form Sumbit/validation

Jun 8, 2004

All I need it to do is check that at least one of 5 search fields has some info in it before it is submitted to a php page.

I'm using a button instead of a submit in html. The onClick = "check_submit()" does not work. I think it's a problem with the submit() method in the check_submit() function:

function check_submit(){
if (search_val1) {
alert("Order has been Submitted");
submit();
}
else {
alert("Sorry, Order Cannot Be Submitted!");
return false;
}
I've tried onClick = "check_submit(this.form)", submit(this.form) and submit(form name) in the function but nothing happens. I guess I'm using submit in the wrong way.

View 2 Replies View Related

ENTER Button - Built Search Form That It Retrieves Information From Database

Jul 30, 2011

I have built search form that it retrieves information from database. for ex: when i click axtar (search) button it retrieves normally but when i click ENTER button via keyboard instead of axtar (search) button but it only displays results with white blank page

Here is web page address. [url]

View 5 Replies View Related

Search Mysql Database In Popup And Select Variable To Pass To Main Form?

Aug 7, 2010

Basically the user would see a button on a form that would be something like "add contact"...then a window opens that shows a search window (want to implement something like [URL]) and it would show all the contacts available in the contacts table...then the user selects the contact to add (via a link).

I think i could get it this far, but how would i then pass that $row to the main form so that i can use the fields from that $row in the contacts table on my form?

View 1 Replies View Related

Create A Search Bar From Database?

Mar 24, 2011

I was assigned to find out how to do this for my work. We were hoping for a javascript (but it could be PHP or other comparable format). Instead of the search function searching the website, we would like it to search a small database full of information.

I have been reading for days now and have just gotten more confused. One thing I read (hopefully it was true) is that you can save a database as an HTML, then convert HTML to .JS which javascript will run.

View 2 Replies View Related

More Than 1 Option - Search Database ?

Apr 15, 2011

According to this [url] I prepared mine search which works fine. it displays which products are intel and which amd for example. I wonder how can i add a second similar search for sochet or something else,but not separate one for example if i have selected the intel as 1st option then choosing my 2nd one it display only intel products.

Here is my current code:

Code:

View 1 Replies View Related

JQuery :: Search To Database For Find A Value?

Jul 13, 2011

How is search to database for find a value?

View 7 Replies View Related

Perform Search In Ms Access Database

Mar 19, 2011

I want to retrieve datas this ms access database using javascript.If I enter 'R' in the search box, I should get all the records starting with 'R'.

View 1 Replies View Related

Sort Database Search Results In Ph

Oct 5, 2010

I want to sort the database search results in php. Basically, the results are returned on a php page and need to be sorted either by columns. I managed to display the results on the page witht he code below and it works, but now i need to add the sorting bit, but i am stuck with it. I dont want to fetch the data from the database again but just to manipulate the existing entries. how can this be achieved in php?

View 5 Replies View Related

Live Search Box Results From Access Database

Jun 8, 2010

I am currently trying to create a live search box that as I type it will start displaying results that match.but it retrieves its data from an XML file, I need mine to retrieve from a column called FirstName within a table of an Access database.

View 1 Replies View Related

Smart Search Form & Browsers Saved Search Fields?

Aug 18, 2010

I have created a similar smart search like yellowpages:[URL]... Here is the problem I have with mine:

Lets say I search 'Attorneys' I start typing 'Att' ... then 'Attorneys' shows up in the smart search so I click on it and press enter. The next time I start typing 'Att' my browsers saved search field pops up over the websites smart search. Here is an image which might help explain the problem a bit more:

View 1 Replies View Related

Ajax :: POST Method And Send - Store The Search Terms In A Database

Mar 15, 2010

I too have a problem with Ajax POST method and Send. I have set up a Site Search using the Google Ajax Search API, and it works fine. The search term is stored in the variable (?) query. Just to make sure, I have set up a new variable (searchTerm) to read the value of query, and a temporary Alert box shows that this variable does indeed contain the search term.

I want to store the search terms in a database so I can see what people are searching for. So I set up a POST method to send the searchTerm to a php file, which uses if (isset($_POST['searchTerm'])) to obtain the searchTerm and then insert it into a MYSQL database. But it doesn't work.

When I couldn't insert into the database, I added a second (temporary) insert using a dummy value as the else part of the above if statement, to test (1) if the Ajax file was actually setting the php file going, and (2) to check my Insert code was working. Both work.

So the problem is clearly that either the Ajax code doesn't Send correctly, or the php isn't receiving it. I am stumped to find what is wrong. Here are the two relevant sections of code:

Quote:

Quote:

To repeat, the php is running and always loads the dummy variable from the else section, indicating that isset($_POST['searchTerm']) is null.

View 14 Replies View Related

Ajax :: Write Program To Auto Suggest - Complete Search Word From MSAccess Database Using PHP?

Feb 8, 2010

How to write a program that will auto suggest or auto complete a search word from a MSAccess database using PHP and Ajax.

View 1 Replies View Related

Strip Link / Cath Input - Fewers / Listeners To Put A New Youtube Link To Database By Giving Input From My Page

Jan 21, 2010

I've made a page to listen to The Dutch Top 2000 ever.. Example : [URL] After that I want my fewers/listeners to put a new youtube link to my database by giving input from my page. Example: [URL] For my database it is required that the input only 7fXaC07X5M8 instead of the complete link. [URL] My probem is how to handle the input in my form by javascript:

<td><input type="text" name="YourLink" size="256 maxlength="256" value="http://www.youtube.com/watch?v=7fXaC07X5M8&feature=player_embedded#"></td>

To a striped link :7fXaC07X5M8 what is accepteble for my database

View 4 Replies View Related

Java - Database - Post Form To Mysql - Only Posting First Letter Of Word/phrase For Text Input Fields To Mysql Database

Jul 13, 2011

I am having no luck with my post form to mysql. It is only posting the first letter of the word/phrase for the text input fields to the mysql database. It is a photo and text post form. The photo and only first letter of text are posting to database. I am using Jqtouch, jquery, and phonegap.

Here is my form fields:

Here is my java script:

View 3 Replies View Related

Value Search (find) To Database(table) Letters To Letters And Live?

Jul 13, 2011

i want a value search(find) to database(table), this requires an ajax call to a server page? if want show result search live(online) and search letters to letters (transliteration), how is it?

[Code]...

View 1 Replies View Related

Search Engine Redirects To Link Page

Feb 19, 2010

I've been the last few days around a script that I can't make it work. This script is a search engine, when you look for something say the word "titanic", it shows you a list of results with numbers, being the first link with the higher number (kinda like a score), and then after u click the link you want he goes to the respective page. Now I want him to skip the results page, and directly open the first link that he founds on the page.

The Script
<!-- Begin
var item = new Array();
// Just enter as many additional pages that you want to search, then fill in he additional listings for each page.
// "Page Name","path","Page Title","Many,Key,Words","Descriptive Comments"
c=0; item[c]=new Array("centerif.htm","","titanic","index,main,start,home,front","Demonstration search engine data about an imagined but probable internet site."); .....

View 11 Replies View Related

Search Engine Redirects To Link Page?

Feb 14, 2010

i have a free js script for a search engine, pretty simple, i define the key words and the .html associated to them. But when i enter a word he starts listing the matches he found and rate them by number, being the highest number the most probable match!

Now what i want to is to SKIP the listing, and redirect automatically for the .html of the first match he finds .

The script:

<SCRIPT LANGUAGE="JavaScript">
<!-- Original: Dion (biab@iinet.net.au) -->
<!-- Web Site: http://www.iinet.net.au/~biab -->

[Code].....

View 10 Replies View Related

Make A Link To A Pdf And Bring Up A Search Pane In The Certain Pdf

Jan 26, 2010

search = "#search=%22" + search + "%22";
globalHTML="<html><head><title>" + formTitle + "</title></head>"+"<frameset><frame src='" + pdfURL + search + "'></frame>"+"</frameset></html>";

This works just fine as my javascript to make a link to a pdf and bring up a search pane in the certain pdf. My question is if anyone has tried to highlight search terms in a pdf just by clicking on the link. I can't seem to get that to happen.

View 2 Replies View Related

Embed Search Form Into Page And Search That Page's Content?

Sep 28, 2011

I have a page built in Sharepoint. I need to create a little search box within that page so people can search for names on that same page. It's a page with a lot of text, hence why the search feature is needed.

I can only use an XML editor.

View 4 Replies View Related

Chart To Slide On (click On Report A Link - Right Next To The Search Box)

Jul 10, 2010

allows the chart to slide on (click on Report a Link , right next to the search box): [URL] I need to imporove the way this functions on my site. Here is how the report a link functions on my site:

[Code]....

View 1 Replies View Related

Pass User Input From A Form To One Database Field Using Several Form Elements

May 4, 2009

I need to pass user input from a form to one database field. I'm relatively new to JS but the idea I had was to have several form elements and use JS to collect the users input and send all the values through a hidden element. What's happening is the variable names are being sent rather than the values. The code below is only passing to the next page. Limitations: I am editing an intranet site built by a 3rd party so a lot of the files we've been given are encrypted. I cannot change the method to post.

[Code]....

View 3 Replies View Related

Creating A Search Box To Type Custom Words Which Link To Places?

Mar 3, 2010

Recently in my IT class, we made a HTML page which would open a popup box, where the user could enter a key word. When the user pressed enter, the page would navigate to a specific page. The code we used was:

<script language = "JavaScript">
where = window.prompt ("Please tell me where you would like to go.");
switch (where){[code].....

implement this code on my workplaces server, and have the keywords link to other html documents within the server. However when I tested this, for some reason the links are not working.

View 1 Replies View Related

Make A Button Link Me To Website With A Designated Search By User?

Mar 14, 2010

I'm new to javascript and I have a button in an interface for an app. It's like drag and drop and i want this button to link you to a certain website searching for what the user types in the searchField1 box. The button is button16. Such as you type dogs into the text box and you click the google button among other search engines and it will redirect you to a google search doing a search for dogs. But how do I make this button search google and search for whats in searchField1. I would really appreciate the help. Im looking everywhere to learn this but just cant find it. If you could tell me how or send me a link to a tutorial code...

View 2 Replies View Related

The Mootool Adds The Pop Out Effect To A Form Box And The Enables The Nav Switch For 2 Boxes That Contain Different Form Fields For A Search Engine?

Sep 10, 2010

I have two js scripts running on my project at the moment, one is uses mootools and the other uses jquery-1.2.3min, both work but not if they are on the same page.The mootool adds the pop out effect to a form box and the jquery enables the nav switch for 2 boxes that contain different form fields for a search engine. Now I've been reading up on the two and have decided to favour jquery which means I have to reproduce the same effect in mootool but with my limited knowledge it's proven rather hard.The mootool code:

var isExtended = 0;
var height = 165;
var width = 240;

[code]....

View 3 Replies View Related

Search Term To Stay In Search Field After Search?

Dec 10, 2010

I have a search field on the website, and when I type a word to search, it search good, but after preforming the search, the search term from search text field disappears and become the default 'Search' word.

How can I make search term stay in search field after preforming a search ? For example, when I type into the search field 'JavaScript' I want that term to stay in search field and after the search is done.

View 1 Replies View Related







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