DB Search On Default.html Page

I've taken over maintenance of a website running on NT 4, IIS with ASP pages and an MS Access database, but I don't have much experience with this platform. I've got the ASP down pretty well and know SQL, but am having a problem figuring out how to get data for the main page.

On the main page (default.html) I want to display a random business from our database of businesses. Since it's a .html page how can I run server-side code to run the query and select the business? Am I stuck with CGI or is there some other way to do this? I don't want to redirect from the main page to another page, either.

View Replies


ADVERTISEMENT

Highlight Search Keywords On HTML Page

I have an ASP search function which, after typing the search term, searches HTML pages and creates a list of links.

The problem is that I do not know how to code so the search term is highlighted in red after the user clicks on the link to view the HTML page.

View Replies View Related

Default ASP Page Displays But Others Don't

I have setup an IIS 6 server and I am trying to migrate a pretty basic website to it. It will display any ASP page that I set as the default page, but gives a 404.2 for any
other ASP pages that I link to.

What am I missing?

View Replies View Related

Solve The Default Page

i using the iis on my comp as a server.if i dun have a index.html or default.html page in my directory then when i enter //localhost then all files will be shown.now i put a index.html page inside the directory.. it will open up the index page when i enter localhost.i wan to link a page from the index.html page to the main login page.how do i do it?

View Replies View Related

Default.asp Page Error

I have uploaded asp online shop to my server but i can not see my default page pictures.Also i my poll does not work.Like windows download page appairs. My site was working fine with IIS but i do not understand it is not working in my server.

I have copied all my folder to /www/shop/ folder also my products doesn work.
All was working in IIS. My email database is giving error while uploading to server.I have tried different ftp or direct connction.

View Replies View Related

How Do You Display A Default Error Page Using Asp With IIS 5.x

Many of my pages use URL and/or server variables to run recordsets to serve up dynamic content. If a user bookmarks that page and then comes back later, they would get a end of record or no record returned generic IIS error page. Can anyone tell me how to add a defaul error page?

View Replies View Related

Home Page - Default Variable?

I'm very new to ASP, but developing a dynamic website using ASP and an Access dbase.

I've created a template page (index.asp) and I plan for this to be the only page required for the whole site as the rest of the content will be loaded dynamically based on variables in the querystring. For example, if the querystring was: index.asp?PageStr=home, the home page content would load, if it was index.asp?PageStr=contact, the contact content would load.

My question is this. If someone went to my domain xyz.com there would be no default variable in the querystring and no content would load. Is there a way round having to create two pages - a default home page and another page for everything else?

View Replies View Related

Web Site Loads Wrong Default Page

I'm running win 2000, I downloaded a calender and put it into my root website folder. the calendar folder contained a file called adovbs.inc . After the insertion of this folder and creating links to it we noticed that when the web page loaded it's home page, another older page that has been deleted is displayed.

This page was located in the calendar folder. So now I've deleted the calendar folder, and restarted the server but this old page is still on display.

View Replies View Related

Copy Part Of HTML Table To Another HTML Page

I have a table having 3 columns. There is a checkbox for each line. I
need to get those lines whose checkboxes are checked, and show those
lines to another webpage. Is there any way to do that? My concern is
that all information in the table are in <tb></tb> pairs without any
name tag. Any idea?

View Replies View Related

Web.config File, Default Page Precedence, Shared Hosting

I moved a site from a dedicated server to a shared hosting environment. On my dedicated I could specify the order of precedence for the default / index files. On the shared default.asp takes precedence of index.html and I can not change that.

Support told me to look into using a web.config file to accommodate my needs. What I need to do is have the index.html file show up first, not the default.asp Is the web.config file the route to take?

View Replies View Related

HTML For Search Engines

if anyone can shed some experience on how to have search engines index a website that is a store using products stored in an asp database. I've been creating static html pages each time I update my inventory but it seems like there has to be a better/quicker way.

View Replies View Related

Search String In HTML Form

In a HTML form field, the user enters a long text. I need to search for an image tag. Then get the name of the image (*.gif or *.jpeg) to check the image library if the image already exists. If exists, cannot upload the image. Else, upload the image.

View Replies View Related

Regular Expression :: Search A String Of HTML

I want to search a string of HTML and insert a querystring into any url where the url is an asp page and is either a local link /folder/page.asp or of a specific domain http://www.somedomain.com/folder/page.asp. It needs to be able to handle plain links and those with querystrings already in there.

I could do it with instr functions etc but I thought this might a good time to brush up on regular expressions. Can anyone point me in the right dirction?

View Replies View Related

Passing Recordset From An ASP Page To Another HTML Page ?

I am looking for a way to pass an ADO recordset that has been retrieved in
an ASP page to another HTML-page. Is there someone who can provide me with a
small sample or a link to see how this is done?

View Replies View Related

ASP Page As Inline Frame In HTML Page

I have a ASP Page[inline frame in an html page] that does login to a database.

When the user visits the site, the first attempt to login will always failed and session is broken. Login name and password are correct though.

Only when the user re-try agian he/sge is then able to login to the site successfully. Can anyone tell me what could had caused the first time login failure?

View Replies View Related

Values From Asp Page To Html Page

I have a web form page that passes values to an asp page, in which an email is sent to the customer with those values. The email functionality works fine. But I also want to display these values on a separate "thank you" web page after that.

What is the code to make those values display in the "thank you" web page? Does this involve adding code to the asp page and the "thank you" html page as well?

View Replies View Related

Search Page ASP

We are building an application with ASP/SQL Server and need to build a
search page. I want to display lots of fields/textboxes on the search page
to allow user to search any field by entering the search terms in any of the
textboxes.

I was thinking of using lots of if conditions to build the search string
something like

strSQL = "Select <<fieldnames>> from Contracts where Active= True "

if request.form("contractno") <> "" then
strSQL = strSQL & " and contractno ='" & request.form("contractno")
& "'"
end if

Does anyone know of a better way to build the SQL string. Also any methods
to speed up the query built will be much appreciated. I have already limited
the total results that the query displays but adding " Top 20 " in the SQL
string. Any other suggestions?

View Replies View Related

Search In One Page

When a visitor hits the F12-key, there will be a search-window to search within that page
Can anybody give me a ASP-script that will do exactly the same. So, a little ASP-script with a "input type=text" to search in that page.

View Replies View Related

Search Page

I am trying to make a search page. Once a serach word or words is put in I need it to serach multiple product tables and output the description of any prioduct if the search word is present in the description.

However, If i put in 2 keywords like "paper sticker" I get no results. How do you search multiple keywords? Code:

View Replies View Related

Search Page.

I am trying to create a search page. I have few hundreds of word documents in my server. I am giving the user a text box to enter the text to search within these word documents. when the user enter "xyz", all the word documents that contain xyz should be filtered.

View Replies View Related

Html Page

I developed the asp page which shows the all transaction records of the particular day in tabular form.But the probelm is that when i take print preview of the page directly from broswer ,print result takes more than one page so i want to reprint report header and then rest of records

View Replies View Related

Page As HTML

i want to show my ASP pages as HTML, in the address bar of IE or NE the ASP page extention for example (result.asp) should look like(result.html) ...

View Replies View Related

Domain Search Page

I am shine from India, a web programmer. I want to know
about how to create a domain search page using ASP.

View Replies View Related

Suggestion On Search Page

I am starting to create a seach page that will seach a database based on values entered by the user. I have the actual seach working but now am working on the user interface.

What I would like is to have a screen with 2 rows of text boxes(search parameters) where the user could enter a name or location to search on the database with. AFter data has been entered and the user clicks on the submit button I would like the results to be displayed on the bottom half of that same page with the original search parameters at the top of the page. I don't want to open a new page to display the results.

View Replies View Related

Search Functionality On Page

I made an application using asp using help from fellow members. This application allows user to download files uploaded through ftp through a web page. they can select the check-boxes and download all the files in a single zip file.

Now some users want that some search functionality should be put on so that they can type a part of file name and all the files having the searched words in their name should come on a separate page so that they can select and download in one go.

View Replies View Related

Simple Page Search

We have a simple html page that contains a long list of documents that users can hyperlink to. The entries are currently in alphabetical order and we would like to implement some type of page search instead of requiring users to go to Edit, Find, and type in the search.

suspect that this is possible. We would simply like to have a SEARCH box at the top of the page and it allows users to search only the current page for words. We simply want something a little more eloquent than the built in IE page search.

View Replies View Related

Can I Get Referer In A Html Page?

is there a possibility that i can use this statement

referer = Request.ServerVariables("HTTP_REFERER") in a .html page??

View Replies View Related

Generate HTML Page In ASP

How can I generatea a HTML page which will have contents read from a local file on server.

View Replies View Related

HTML Form In ASP Page

I have a html form, and I like to know how to capture the values in the form after the user hit the submit button. How do I capture these values in an ASP page?

View Replies View Related

Run ASP File In HTML Page

I have developed a HTML page containing form and table having some fields, Now What I want is that when I Click on Submit Button then all of the Form Fields should be email to a particular email address just like as they r on the form. So my problem is that i have created an ASP page containing code about to pick data form form fields n send it to email address i mentioned, But i dun know how to request an ASP page in a html page, Iam using

<Form name=MailForm action=MailForm.Asp method=post onsubmit="return Validateform()"/>
<Input type=hidden value=junaid@easterntextiles.com name=recipient/>

Just after the table creation but it doens;t work because when i click on submit it ask me to save or open MailForm.asp.
So is there anyone who can explain me how to run this file directly with in html page or how to use asp code in html page.

View Replies View Related

HTML Page With ASP Frames

I have a HTML page named Index.html which is divided into 3 frames. The URL of 2 of the frames are HTML pages but the 3rd frame houses a ASP page.

Now when I go to Windows Explorer, navigate to the folder in which the all the 4 files (3 HTML + 1 ASP) reside & select Index.html (by clicking with the mouse or by using the arrow keys on the keyboard), strangely the Windows "File Download" dialog box (with 'Open', 'Save', 'Cancel', 'More Info' buttons) pops-up with the message Code:

View Replies View Related

Getting Html Generated From An Asp Page

I know you can use the XMLHTTP object to retrieve Html, but how can you get html created by an asp page? Is there a way.

View Replies View Related

HTML Page Templates

Is this affective way using HTML Templates in ASP:

I have html template file with <<TAG1>> .. <<TAGN>> in places, where I want to insert some data then i generate this data in asp:

Dim d ' Create a variable.
Set d = CreateObject("Scripting.Dictionary")
d.Add "TAG1", "Athens" ' Add some keys and items.
d.Add "TAG2", "Belgrade"
d.Add "TAG3", "Cairo"

, open html template, replace each <<TAGx>> with generated data
(d.Item("TAGx") ),
and print it with Response.Write

Or there is any other usual methods to use templates?

View Replies View Related







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