Forum: ASP 22 Days Ago |
| Replies: 1 Views: 459 You will need to run your SQL in a loop:
For i = 0 to 50
i = i +1
If you are using alpha you will need to run a second loop to include your alpha to your (i)
For a = 1 to 26
'determine the... |
Forum: ASP Aug 24th, 2009 |
| Replies: 1 Views: 706 Here is a thought that is a little dirty but may work for you.
Before reading the text file create a temp text file. when you start reading your file write the line into the temp file then delete it... |
Forum: ASP Aug 13th, 2009 |
| Replies: 3 Views: 863 Hello LurkerPatrol,
Ok now I think I have a better idea of what you are trying to do.
First thing, add a hidden value to your initial form.
Response.Write "<input type='hidden'... |
Forum: ASP Aug 13th, 2009 |
| Replies: 3 Views: 863 Hello,
Perhaps try a string Comparison to see if the values are the same, and I am not sure what the brackets before your Back case and after your Next case are for. Also if you are moving to a... |
Forum: ASP Jul 6th, 2009 |
| Replies: 1 Views: 555 With your overview page have a sql statement that creates the links. To do this have one of your columns in the database table reference the title of the article. Then when calling the title also... |
Forum: ASP Jan 24th, 2009 |
| Replies: 5 Views: 2,312 The reason for the email not completly showing up was the ISP's settings, and did not have anything to do with the code itself. The ISP reccomended carrage returns to solve the problem. |
Forum: ASP Jan 22nd, 2009 |
| Replies: 5 Views: 2,312 |
Forum: ASP Jan 18th, 2009 |
| Replies: 5 Views: 2,312 Hello nrvinayak,
Thanks for the reply here is a snippit of the code:
strReport = strReport & "<body>"
strReport = strReport & "<div align='center'>"
strReport = strReport & "<br>"
strReport... |
Forum: ASP Jan 5th, 2009 |
| Replies: 1 Views: 1,310 Here is a link for a very simple tree view: http://www.htmlforums.com/html-xhtml/t-how-do-i-make-an-expandable-list-43732.html
It can be modified to allow for multiple tree views as shown in this... |
Forum: ASP Jan 3rd, 2009 |
| Replies: 5 Views: 2,312 Hello,
I am sending a string created in vbScript via CDO. My scripting is working but the whole string is not showing up in the receiving email.
My code was on the bulky side with bordercolor... |