Friendly Reminder: Look Before You Post

This message is being brought to you by a few of your friendly neighborhood ASP programming solution providers:

Please attempt to solve your own problems before posting to Sitepoint. I know I (and other persons who will remain anonymous) find it a little irritating when one (or more) of the following happens:

1) We can type your question into Google and the answer is the first hit that comes up.

1.1) We can type your question into Sitepoint's search and the answer is the first hit that comes up.

2) Your question is answered two posts below your question.

3) The answer requires merely looking up the appropriate object/function in the ASP/VBScript references. *

4) Two or three minutes after posting your question, you post "Oh, nevermind, I got it." without even referencing the solution so other people with the same question will know how you did it.

* Note that we will be VERY happy to provide you with links to these kinds of references (and indeed already have in the Important ASP Resources thread - which happens to be marked important twice) upon your request (I know of at least one individual who links these references in his signature also).

Now, please don't think that I'm ranting and raving. I'm just trying to inform those persons who do the above on a regular basis. It grows tiresome when I login for the day and all 5 new posts are questions that are easily answered with a simple link that could have been found if the one who posted the question would have spent 30 seconds researching his/her problem.

Mentors, Advisors, and Sitepoint Team Members:

If the opinions of this post are contrary to that of Sitepoint, please let us know. I would suspect that you would like us to spend our time on questions that are not easily answered instead of just repeating information which is already easily accessible.

View Replies


ADVERTISEMENT

Reminder

How do I this reminder? An applicant has submitted a leave application on 1 Jan 2005. If superior didn't approve / reject that leave application, a reminder will be sent to that superior again.

I already have the code on sending email but just wonder what code should I have to tell the system to automatically, run a code in certain time like the above case. I think I need my code should be in my global.asa file, isn't it?

View Replies View Related

Reminder Emails

I don't necessarily need code here, just some guidance to my thought process.

I have built a system for a hospital where users can sign up for classes that the hospital offers. Now, I want to be able to send the users a reminder email a day or so before the event/class. In the database, I have all the user's info in one table. Another table holds the registrations with keys to the user table and the key to the table that has a listing of the classes.

How do I now go about automatically looking through the class table to find out if there is a class in the next 24 hours, and then send an email to all the people registered for that class?

View Replies View Related

How To Send Reminder?

I have done out an online booking system.. but I need to add an extra feature whereby an e-mail reminder could be generated automatically(without me clicking anything) to the person who had make a booking 30 mins from his booking time.

I really have no clue n dun know what should I use to send an automated e-mail reminder. Can anyone teach me the steps to do so ? I 'm using asp and access database and is using windows 2000 .

View Replies View Related

Set Event Reminder Email

I want to add an event reminder email feature that will go to the users that have already signed for the event a day before.

Can someone please help me as to how to start on this code?

View Replies View Related

Password Reminder Service

I just started learning ASP and I need to set up a very basic password reminder service for my website. Basically I just want the user to input their email address and get an email with their password sent to them.

View Replies View Related

Automatic Reminder System In ASP

I've read the thread on how to design an automatic email reminder system, but does anyone have any tutorials or code on how to set it up using Access 2000 and/or SQL Server?

There are no articles on the net (that I could find) related to automatically sending a user an email at a set date and time from 1 table of a database.

From what I can gather, I may need to use a stored procedure, but there's no tutorial on how to design or implement this.

View Replies View Related

What Is The Best Way To Create A Birthday Reminder?

I'm trying to create a section of a website which will automatically show who has a birthday that week. I'm trying to find the best way to do it to create the least amounts of work on the server each time this page is loaded. Code:

View Replies View Related

Sending Reminder Emails Automatically

I have an online classifeds website and would like to send automatic reminder emails to advertisers 3 days before their advertisement expires.

I am able to send emails via CDONTS from a form but are unsure how to extract the date details from the database 3 days from the renewal date and send an email to all relevant advertisers . I have an Access database attached to the web pages.

View Replies View Related

How Can I Make An Automatically Reminder In My Web Site ??

I want to send the registerd users on my web site emails on a specific time automatically for example: a birthdate reminder.

But I need this to be done automatically when the time reached as they specified in the registeration form. Others said to me that the only available ways is to make an application for this, and make it run forever on the server to check the DB, and when the time reached it sends the reminders.

View Replies View Related

SE-friendly Dynamic URL

For some of my pages I currently have part of the URL as being 'ourservices.asp?ID=1' (its got nothing to do with sessions) and I am currently changing part of it so its more SE-friendly - i.e. 'ourservices.asp?services=website-marketing'. However following Googles guidlines regarding dynamic URL's,. it says that some search engines don't crawl pages which have a '?' in them for fear of them being a session URL (which mine isn't).
My question is- is there any alternative that I can use to replace the '?' with another character for my dynamic URL. Or, is this the only way I can have this dynamic URL?

View Replies View Related

Printer Friendly

Just looking for an affective and easy to use free 'Printer Friendly' script for an Intranet.

View Replies View Related

ASP User-friendly IDE

can anyone tell me a user-friendly IDE for ASP? (not
asp.net). Is interdev has intellisense in it?

View Replies View Related

Printer Friendly

I have an asp application that generate reports. The reports are a list of tables that contain information about users. each user has his own table. how do I get the tables to be printer friendly using either css or a script.And how do I page break the tables.

View Replies View Related

SE Friendly URLs With ASP & IIS.

has any one tried SE Friendly URLs with ASP & IIS? There's nothing like mod_rewrite for IIS. Ofcourse there are some 3rd party COM available but how many of us can use them on shared webservers?

So, is there a way to do it?

For those people who don't know what I'm talking about,

Normal URLs with querystrings look like
http://www.example.com/myPage.asp?id=1

while SE Friendly URL will look like
http://www.example.com/mPage/1/

The operative words being look like. You will see the 2nd URL in the browser's address bar but the server will take it as the 1st URL.

View Replies View Related

Re-submit A POST Immediately From A Previous POST

Is there a way to 'force' a submit on a form with out actually allowing the
user to press a button ? For example...

step1: A from is filled out by a user, then they click the submit button.

step2: The form is 'post'ed to an ASP page which writes the values to a
database. So far No problems. But..

step3: Now I want to 'post' these values again to another page without any
user interaction.

My ideas were:

1) I know you can get the form values from Request.Form("myVar"), so I
thought of making a 'dummy' form and setting the 'values' of the form
variables to these Request.Form("myVar") valiables, but I don't know how to
'submit' them to another page again.

2) Is there some type of 'submit' command in ASP?

View Replies View Related

How To Redirect From SEO Friendly URL To CMS From ASP Code

I am trying to SEO a website which gets content from a CMS, and is coded using ASP, running under shared IIS hosting.

There are urls like http://www.example.com/search.asp?it...6&third_id=Red

To get some keywords in there, I was thinking how to get a URL like this
http://www.example.com/Widgets/Special/Red/search.asp OR
http://www.example.com/special-red-widgets.html
convert automatically into the one above with ? and ids..

If this can work, I can have keyword rich URLs, which when clicked can turn into old ID urls, and fetch relevant content from the CMS.

I've heard about IIS redirect but am not sure how it works. Considering that the site is on a shared hosting, I wanted to know your opinion and best ways to achieve this.

View Replies View Related

Printer Friendly Form

I have developed a client based form using vbscript for a web page to run on IE and would like to make this form printer friendly. Anyone have some ideas?

View Replies View Related

Printer Friendly Page

Just want to ask if anyone here has experience with doing printer friendly page. I have done a printer friendly page but the problem is if the line overflow, the printer friendly page will 'run' because my code count line by line, but by charactar or pixel.

View Replies View Related

Dealing With Friendly Urls

My application runs on ASP and the business logic is embedded in Dlls written in VB. The application hosts a list of articles for the user to view and these are accessible through some complex urls like "http://mysite/articles/category1?articleid=34512". I would like to denote a friendly url to these articles such as "http://mysite/articles/kb_TaxPlanning.asp". I am thinking of using an ISAPI filter to do the work for me. My friend was trying on using a httphandler, but it did not work. Please share with us the resources for creating an isapi filter for the same. Also how to use the same for the expected result?

View Replies View Related

Printer Friendly Pages

my data all can display.but when link it 2 printer friendly pages no data display

View Replies View Related

Printer Friendly Code

Is there a way to get a printer friendly page using ASP. And when I say this I do not mean removing banner, picture etc and print the page.

The problem I face is, an ASP output is a big table with say 10-15 columns and it would not print even in landscape mode. So if I print the output from the IE browser the right side of the table gets cut. I want to know if there is an ASP code to over come this problem.

View Replies View Related

Printer Friendly Pages

What are the best approaches to create printer friendly pages in ASP web sites.? provide us help or links to useful artciles on this topic. Also can we avoid creating separate printer friendly pages and send the current page output to printer as the PRINT
button is clicked?

I have seen this functionality when we print our MCP transcript in MS certificastion site?

View Replies View Related

Search Engine Friendly URL For ASP

I'm having problems finding a guide for search engine friendly URLs for ASP. I found some program for sale that needs to be installed into IIS, but this is no good. My web hosting provider would never allow this.

Can anyone point me to a helpful guide in creating search engine friendly URLs out of dynamic sites for a Windows server with ASP? If someone knows of any good hosting providers who already have the ISAPI_rewrite filter installed for its customers, that would be great also.

View Replies View Related

Printer Friendly Pages

i am developing a website and in it, i would like to allow them to print the webpage but without the header, footer, as well as to set the default printing layout to be landscape and not protrait. Does anyone know how i may go about doing it?

View Replies View Related

User Friendly Error Messages

I want to do error handling in my application. I have made a complete application. but when I encounter errors. I want to do error handling. how can I do it?

I mean like in this case I can see if the record is being added duplicate then I can always check for duplicate records and throw a message. but I will face so many errors like this??? do we have a list ..whereby I can get all the error numbers and there meanings and I generate my own user-friendly errors?

Microsoft OLE DB Provider for ODBC Drivers (0x80040E14)

[Microsoft][ODBC Microsoft Access Driver]

View Replies View Related

Turn Off Show Friendly HTTP Error

how can i turn off 'Show Friendly HTTP Error Messages' in IE Browser to get a better error message?

View Replies View Related

Regular Expression :: Search Engine Friendly URL

I have a search engine friendly URL like this:

http://www.somesite.com/restaurants--reviews-compare-prices/Std_Country~Belgium/Restaurants_Cuisine~African/browsecat-1

by applying the following pattern:

^http://www.somesite.com/.*(/([a-zA-Z0-9_]+)~(.*))+/browsecat-([0-9]+)$

I'm trying to change the SEF url to this:

http://www.somesite.com/browsecat.asp?CatID=1&Std_Country=Belgium&Restaurants_Cuisine=African

by using code like this:

regex.replace(SEFURL,"browsecat.asp?CatID=$4&$2=$3")

however, all I'm getting is this:

http://www.somesite.com/browsecat.asp?CatID=1&Restaurants_Cuisine=African

which is only partially right. does anyone know how can I get this thing right?

View Replies View Related

If Table Doesn't Exist Give A Friendly Message

Just when I thought I was done , I try going to the "myfolder.asp" page and I get an error:

Error Type:
Microsoft OLE DB Provider for ODBC Drivers (0x80040E37)
[MySQL][ODBC 3.51 Driver][mysqld-3.23.55-nt]Table 'streetguide.max' doesn't exist
/streetguide03/members/myfolder.asp, line 73

Line 73 is in red.

This is because the user didn't have a folder created, because they didn't save anything to their folder. On another page I have code that creates a table with the same name as the UserName, only if they decide to save something in their folder. Code:

View Replies View Related

How Can I Give A Nice Print Friendly Feature Through IE For My Website Visitors

I just wanted to know if anyone can tell me how can I give my website visitors the feature of "FRIENDLY PRINTING" through IE. Code:

View Replies View Related

Send "Forgot Password" Reminder Via Email

I've already retrieved the users password from the database - I just
need to send it to the email address entered.

From reading many posts, I need a server-side script and rather not
use form mailto: nor use javascript on the users PC.

View Replies View Related

Printer Friendly Page :: Directly Print The Content From Textbox Data

how to print the content of a multiline textbox without taking the content to some other "printer friendly" page. I just wanna send whatevers in the textbox directly to the printer.

View Replies View Related

Post Data, Then Post Again..

i have a series of .asp pages that i am dividing into model, view, control logic. my view collects a whole bunch of data and posts it to the controller. im wondering if there is a way to somehow "re-post" this same data to my model page.

in short, is .asp capable of taking data posted to a page and re-post that same data to another page?

View Replies View Related







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