Register Txt Sends Me Where
This regards a listing of youth events. I have a Access DB that users input to. A page where users can view input and the events. I use Dreamweaver to make this. When entering informaiton into the db a user would enter in the Event_Reg field the site where a person can go to register for the event. I would like to make a Link Titled "Register" for all events that users enter into the db.
But when a users clicks "Register" it would take them to the site specified in the Db Event_Reg field. Below is the dynamic code I am using now. It will produce the actual site address. I just want it to show Register when clisked take them to the appropriate site.
<%=MakeHyperlink((Recordset1.Fields.Item("Event_Reg").Value))%>
View Replies
ADVERTISEMENT
I'm trying to validate a form which sends an e-mail. This is the code which sends the e-mail but i want to know what code i need to validate particular fields of the form and link it back to the previous page (index.asp) if unsuccessful. Code:
View Replies
View Related
I have a very simple feedback form: Name, Email, Comments.
I would like it send to my Yahoo email. I just wonder it is possible to send it to my yahoo email …. without asking the users installing any components?
I cannot use "CDO.Configuration") because I don't know SMTP Server.
View Replies
View Related
My website uses ASP SmartMail to send Contact Us and Order Forms. In both the forms It only sends the forms to kirti@one-world-trading.com although I want it also to go to my msn address. Here is what the form looks like....
View Replies
View Related
I’m trying to allow large amounts of text, like up to 6 pages (many paragraphs) of text to be inputted into textarea that then sends off thru email.
When I receive the email, all the paragraphs that I’ve submitted become 1 big long paragraph.
I tried wrap attribute but it does nothing.
Is it possible to receive a paragraph by paragraph by using textarea?
View Replies
View Related
I've been trying to figure this out for about an hour now but a combination of my own narrow scope and limited experience, coupled with a general lack of information on this sort of thing has this ASP newbie scratching his head. I was told that the issue with receiving multiple instances of the document is relevant to this chunk of code:
View Replies
View Related
I run a classified ads site, and one of the features are that the user will be notifed of all new ads (at once) that are posted, everynight. At the moment the user must go to a specific page to enable this, what i would like to do is set this automatically when registering to enable.
the database uses yes and no for this feature, however i have tried entering a default value of yes, however when someone registers it shows the (-1) in the database and not the yes.
View Replies
View Related
Is it possible to creat aSelf-register form on IIS? Using Widows server 2003, is ther any script needed to do so, or any extensions.
View Replies
View Related
I have this ASP page that checks if a certain DLL is registered on a client machine. If it ain't registered, then it should be registered.
Here is the part of my code that supposedly registers the dll: Code:
View Replies
View Related
I need help with creating a register process for the user(Name, Password, email and phone) and then them being able to login(using name and Password)
I using ASP and access database, I'm also doing it in wap/wml but I think that if I had it in just normal html I would be able to convert it
View Replies
View Related
I made a small executable file in VB, compiled it and threw it in the Bin folder of my virtual web directory, however when I try to run it from an ASP webpage I keep getting the error that it can not create the object.
After some googling everyone seems to say that you must register the .exe with the server first. My question is, how do I go about registering the .exe file with the server (I have admin access to the server) so that I can use it in my ASP webpage.
View Replies
View Related
How do I register FileSystemObject and ImageGlue component with MTS? Because the files manipulated using ImageGlue & FSO need to be recorded in the database. Without transactions, a lot of 'floating' files (without entry in the database), and entries without the physical files left around on the server.
View Replies
View Related
I downloaded your "A Beginner's Guide to CDOSYS" article I
displayed the Sample1.htm page with the IE6 within
a web folder. The page display perfectly. I filledin the
e-mail info and clicked send. All worked without any error
message. I destination e-mail address never received
the mail. Do I need to setup IIS 5 first? Register it
somehow. Please advise. I'm anxious to use this built
in component.
My ISP is Comcast. My OS is Windows 2000 server Pro.
I setup the MS Outlook for outgoing mail. Outgoing mail
with MS Outlook works fine.
View Replies
View Related
I have set up a login and register function in my site. When a user logs in they are re-directed to the homepage.
What i want to do is display the users name after they have logged in, on the homepage. How do i do this?
View Replies
View Related
how to build a login.asp page with a session control and register.asp page with validate input value.
View Replies
View Related
I have a database with two fields: product and photo. The page should display pictures of the product, which are on the photo field and if there is no picture (in this case there is no registers in the database) I need to display a message like "hey dude, no pics right now". Code:
View Replies
View Related
i'm developing a site but i'm still new to ASP..i could only
code a simple DB [add/edit/remove] coding..
i need to creat accounts for users, so i must have a LOGIN page
contains all the standard such as: Logout, register new user,remember password ,,
users who should register in my site , are previously stored in DB by a KEY field..not to allow any user to register..a new user should only insert that key,if it is exist in my record,i shall allow him to view some pages.
View Replies
View Related
I want an automatic email to send to a user when they register, the first page looks like this, i took away all the table information and what have you ....
View Replies
View Related
I am having trouble trying to detect if no records are retrieved by the search. There doesn't seem to be a problem with the connection to the database or the SQL query. I think the problem is somewhere in my If statement. Code:
View Replies
View Related
here is the script i use:
Set myMail=server.CreateObject("CDO.Message")
myMail.Subject="subject"
myMail.From="me"
myMail.To=request.form("email")
myMail.TextBody="hello"
myMail.Send
set myMail=nothing
this script sends emails to some addresses but not others--and its based on the email service it's sending to. for instance, hotmail email addresses get the email, but mail.com email addresses dont get the email. i have tried sending it to other email hosts, too, and still, some work, some don't. what is going on here?
View Replies
View Related