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
ADVERTISEMENT
I have a user profile database, and want to create a list of each persons birthday, with the nextg birthday at the top.Can anyone tell me the best way to do this?
View Replies
View Related
I'm working on a an ASP script that should be able to send Birthday greetings to the employees in the company. But I was thinking of a way to invoke the script everyday at 9 AM to send the email if it matches any of the birth dates in the database.
One way I thought about was keeping the browser window open on a server and create a rule which refreshes the script everyday at 9 AM, but thought that this way might not be very effective especially if someone closed the window.
View Replies
View Related
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
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
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
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
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
View Related
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
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
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
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
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
Here's what my code looks like...
View Replies
View Related
Is there anyway to generate a PDF using ASP Scripting(VB Script).
View Replies
View Related
Does anybody knows a way (free of cost, code or dll) to generate pdf?
View Replies
View Related
I use a website in asp for which I have to type a username and
password everytime I want to login.
On the form are two fields for typing the username and password and
one button LOGIN.
I want to create an standard url for the website which includes my
username and password so I don't have to type it in everytime.
I looked at the page source but I can't find the right string.
I thought maybe http://.........aspx?username=me&password=it
but that doesn't work.
View Replies
View Related
Is there a (simple) way to create a PDF file from ASP?
View Replies
View Related
I have 2 developper machine running visual studio 2003 and Windows 2000. On the first machine (Machine A) I may create a new asp project without problem. On the second (Machine B) I cannot create a new project.Visual Studo create the project but not the initial files and freezes.
But I may create a new project from Machine A using the web server of machine B.I have checked the access rights of both servers, the access rights on directory wwwroot and inetpub.Everything seems the same.
View Replies
View Related
Has anyone seen or know if anyone has done this? I think that ASP would be a great tool to do this with but I am curious if anyone has tried it and found it to be too hard or too burdensome to follow through with?
View Replies
View Related
I'm running IIS5 on a Win2K server, and I want to have an ASP page that
creates new users. I have some simple code to test this, but am getting
a "500" error when I run it. The ASP looks like:
<%
strDomain ="Foo.com"
strUser ="Foo1"
' Create new user with password
Set oDomain = GetObject("WinNT://" & strDomain)
Set oUser = oDomain.Create ("User", strUser)
oUser.SetPassword = "password"
oUser.SetInfo
%>
Just for this testing, I've added IUSR_machinename to the Administrators
group, but am still getting the 500 error.
View Replies
View Related
how to create dao.tabledef object in asp:
I need to convert the following code into asp:
Dim tdf As DAO.TableDef
Dim db As DAO.Database
Dim fld As DAO.Field
Set db = OpenDatabase("C:Mydb.mdb")
Set tdf = db.TableDefs("Table1")
Set fld = tdf.CreateField("Field2", dbText, 10)
tdf.Fields.Append fld
View Replies
View Related
Is there a way to create a host header in IIS with an ASP?
View Replies
View Related
I want to create a web page for my friends.(I have a subdomain and my server supports ASP scripts) It will contain a small basic guestbook.It must write the entries to a text file on the server.And i must be able to view the guestbook.
View Replies
View Related
I'd like to create ASP file on ther server side. Can I use
fso.createtextfile("c:folder est.asp")
Do I need to create a folder too?
View Replies
View Related
I am trying to create a menu with multiple tiers. I want to use the one menu as an include file throughout the site. Depending on what page you are on, I want the 2nd and third tiers to show up.
The rest just show the tier 1 links. I'm pretty sure this can be done in CSS, but the problem is that with a very big menu, I'd rather not have to load up the entire menu when it all won't be showing.
There for I figured I could create it in ASP. I could set some sort of parameter in the page so the menu include file would know what page I'm on, and then would only show and load the 2nd and 3rd tiers of that section. Is this possible? Code:
View Replies
View Related
is it possible to create a xml file and save so that i can upload with asp?
View Replies
View Related
i want to create flowchart/flowdiagram like msword.And the user type inside the rectangular what they want to do..
View Replies
View Related
How can I simply save some data into a flat file (.txt) ? I've some data available and if the user clicks on a button it will save that data into the flat file... The user also need to define the directory (as in VB the common dialog box)...
Is this possible ???
View Replies
View Related
I have created an asp page that pulls data from SQL server and displays
on webpage in the form of Table and Chart.
I use OWC to generate Chart. It work find on my computer with Ms office
2000 installed, but when I upload my the page to my webserver, it
doesn't work with the following error message:
006~ASP 0177~Server.CreateObject Failed~Invalid ProgID. For additional
information specific to this message please visit the Microsoft Online
Support site located at: http://www.microsoft.com/contentredirect.asp.
Does anyone know how to solve this problem?
P.S. On the production server, Office Web Component had already been
installed. WSCript.CreateObject("OWC.Chart") works fine in my colleage's
vbscript file.
View Replies
View Related
tell me with some examples to how to use our own threads in asp pages. I tried to do it in usual way how we are suppose to use it in console and windows application. but the same thing will fail in asp pages. it give "nullreference" exception from unknown module.
View Replies
View Related
how can i create a new folder by using ASP??
View Replies
View Related
I have Windows 2000 and recently included Internet Information Services. I
then created a simple ASP file and clicked on it. The Open With dialog
appears asking me to select a program. I copied an existing ASP file,
test.ASP from another computer where it runs successfully. When I copied it
to my computer it changed to test.ASP auto file. The other computer runs
Windows XP. I am not sure is this is the issue. I verified the IIS is up
and running on my computer. Is there anything that can be done to correct
this?
View Replies
View Related