Search Results

Showing results 1 to 33 of 33
Search took 0.01 seconds.
Search: Posts Made By: zippee ; Forum: ASP and child forums
Forum: ASP Nov 22nd, 2005
Replies: 1
Views: 3,483
Posted By zippee
This shouldn't appear in ASP!

Anyway, download firefox as your browser and you can resize the page when print.
Forum: ASP Oct 16th, 2005
Replies: 7
Views: 3,169
Posted By zippee
If you consider developing highly secure sites, use either JSP or .NET (asp.net). These are more like software development than web development, so that your site script will not known by web...
Forum: ASP Oct 11th, 2005
Replies: 1
Views: 3,271
Posted By zippee
Are you talking about email auto responder? You can have your email server to do the job, not ASP.

If you are planning to send a confirmation email to your web user who send you an email via...
Forum: ASP Oct 11th, 2005
Replies: 1
Views: 2,827
Posted By zippee
You can use database to store the last visited date, time and ip etc (save in the same database as user details). Everytime the user login, you query (SELECT) the database and display the last...
Forum: ASP Sep 21st, 2005
Replies: 6
Views: 7,412
Posted By zippee
You can. But it would be much easy to use PHP with MySQL, at least there is phpMyAdmin to help with the interface with database. Connecting mySQL in ASP is as follow (change the dbname,username and...
Forum: ASP Sep 7th, 2005
Replies: 4
Views: 4,284
Posted By zippee
Did you get "Mail send failure" notice or error message from server?

Did you use it on asp file or the one you show above (htm)?

Try this to include all variables in your mail (your original...
Forum: ASP Sep 5th, 2005
Replies: 4
Views: 4,284
Posted By zippee
First you have to make sure 1&1 support ASP mail. Then chack if the mailserver (the host) is the correct one. Many server use localhost as their mail server.

By the way, your booking page is a...
Forum: ASP Aug 27th, 2005
Replies: 2
Views: 2,678
Posted By zippee
Try thisDestinationsToChoose = Array("C:\Inetpub\wwwroot\uploadmultiplefile\phone", "C:\Inetpub\wwwroot\uploadmultiplefile\pics", "f:\store")

NamesToChoose = Array("Phone", "Pics", "Store")

......
Forum: ASP Aug 27th, 2005
Replies: 4
Views: 4,422
Posted By zippee
Remove the second line - wrong expression:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
Forum: ASP Aug 2nd, 2005
Replies: 2
Views: 1,776
Posted By zippee
You may use the below:

<%
url = "music/" & rs1("artist") "/" & rs1("album") & "/" & rs1("tno1") & "/" & rs1("Track1")
%>

If the url varaibles may change, then you can integratecampkev code to...
Forum: ASP Jun 15th, 2005
Replies: 3
Views: 1,874
Posted By zippee
It would be better to use just one form and use drop-down list or radio to identify data. Fopr example:
<form action="" method="post">
<type="radio" value="Boys School" name="action">...
Forum: ASP Jun 14th, 2005
Replies: 2
Views: 2,664
Posted By zippee
Sending email using asp is simple, but can you explain more what you try to do? Are you going to 'force' the receipent to email you 5 address? or volunterly?

You may want to use autoresponse to...
Forum: ASP Jun 14th, 2005
Replies: 4
Views: 3,389
Posted By zippee
The pure asp upload script store file data in database. if you have large file or many files, then the database may overloaded (depend on which db you use).

Plus, not all hosting support upload()...
Forum: ASP Jun 9th, 2005
Replies: 4
Views: 3,389
Posted By zippee
It's not easy to do it using ASP, but if your hosting has preinstall ASPUpload, life become much easier (see www.aspupload.com). if not, and you are pretty knowledgeable about ASP, you can try...
Forum: ASP Jun 8th, 2005
Replies: 2
Views: 2,941
Posted By zippee
Seem you are working on multi-level marketing chart!! :cheesy:
You can use looping function to call database repeatedly:

' user A login
userid = Request("userid")
' query database for user A...
Forum: ASP Jun 7th, 2005
Replies: 2
Views: 2,071
Posted By zippee
I hope the below code helps.
<%
If Request("num_student") = "1" Then
Response.Write "Number of student button was clicked."
' add your other script here
else
Response.Write "Number of...
Forum: ASP May 31st, 2005
Replies: 4
Views: 11,165
Posted By zippee
I would suggest you use database (MS Access is the easiest for small data size) to run the application. See www.haneng.com for tutorials.

You can then use datediff function to calculate the...
Forum: ASP Mar 6th, 2005
Replies: 2
Views: 4,937
Posted By zippee
sLastName = Replace(sLastName, "'", "&acute;")

You will get I'm rather than I"m
Forum: ASP Mar 6th, 2005
Replies: 2
Views: 4,973
Posted By zippee
You may use redirection:

Response.redirect "'msg.asp?msgcode=" & Request.QueryString("msgcode") & "&titleno=" & Request.QueryString("titleno")
Forum: ASP Mar 6th, 2005
Replies: 1
Views: 8,780
Posted By zippee
Am I right your combo box is dropdown menu?

1. Modify the link. for example: form.asp?choice=default for contact us link, and form.asp?choice=technical for technical support link etc

2. In the...
Forum: ASP Jan 28th, 2005
Replies: 2
Views: 3,201
Posted By zippee
I think this is because you do not specified index.asp as one of the default file. Make sure your server/hosting set index.asp in the default file list (normally contains index.html, index.htm,...
Forum: ASP Jan 28th, 2005
Replies: 4
Views: 14,614
Posted By zippee
Style sheet should not put within ASP <%...%> and have to be in the head tag <head>...</head>
Forum: ASP Jan 25th, 2005
Replies: 8
Views: 6,356
Posted By zippee
If you can instal JMail or ASPMail to your server (or they have been installed), it will be easier and there are many open source code on the internet.
see http://www.haneng.com tutorial, also see...
Forum: ASP Jan 25th, 2005
Replies: 4
Views: 14,614
Posted By zippee
It is always good idea to validate the form after submit. Otherwise you may get plenty unwanted emails.
Forum: ASP Jan 25th, 2005
Replies: 4
Views: 14,614
Posted By zippee
You can use style sheet to set the font size. for example, put this code at the begining of the page. You can set the font-size and font-type.
<style type="text/css">
body {
font-family:...
Forum: ASP Jan 23rd, 2005
Replies: 2
Views: 13,555
Posted By zippee
Try this. You can change the 'condition' to display images you like
<%
PutImage = "False"
' looping
While Not QResults.EOF
' condition
if CurrentNumber = Day(QResults("StartDate")) Then...
Forum: ASP Jan 22nd, 2005
Replies: 3
Views: 3,186
Posted By zippee
Make sure you have closed all db connection at the end.
Make sure there is no incomplete loopings (i.e. for and next) or conditions (i.e. if and end if). If you forget 'end if', error will be...
Forum: ASP Jan 22nd, 2005
Replies: 3
Views: 2,976
Posted By zippee
If the existing web pages...
- are prepared using template, then modify to the template will update to all the web pages. No ASP knowledge needed, but need program like Dreamweaver or Frontpage to...
Forum: ASP Jan 19th, 2005
Replies: 3
Views: 4,101
Posted By zippee
Ms Access is definately not the wise choice for credit card application! If this is your only choice, set password to your database. You also need to host it in secure server, if you collect the cc...
Forum: ASP Jan 19th, 2005
Replies: 8
Views: 6,356
Posted By zippee
See Brinkster knowledgebase:
http://brinkster.com/Kb/Kb.asp?kb=108154

Make sure your server support CDONT first!
Forum: ASP Jan 19th, 2005
Replies: 1
Views: 4,772
Posted By zippee
1. use javascript slideshow script. many free codes out there.
2. use GIF animator software to bind many images together into one GIF image file.
3. use macromedia flash.

The first will consume...
Forum: ASP Jan 19th, 2005
Replies: 2
Views: 6,273
Posted By zippee
ASP cannot 'include' page outside its server.

You can use the basic html script like frame or iframe. iframe is better which the page only appear on the location you want it to be, within your...
Forum: ASP Jan 19th, 2005
Replies: 2
Views: 3,357
Posted By zippee
see shopping cart code in asp101.com.
Showing results 1 to 33 of 33

 


About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC