Forum: ASP May 14th, 2007 |
| Replies: 2 Views: 1,661 You need to query the database using ajax get or post method, and then use callback to show the second dropdown menu using innerHTML. |
Forum: ASP May 13th, 2007 |
| Replies: 1 Views: 2,581 You need to get access to the data or some API. That's the only way to query the information. |
Forum: ASP Nov 13th, 2005 |
| Replies: 0 Views: 4,161 Author: Dexter Zafra www.ex-designz.net
'The result will look like this:
'List A-Z: A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
'Place the code at the top or bottom of your asp page.... |
Forum: ASP Mar 15th, 2005 |
| Replies: 6 Views: 3,699 Is your IP address dynamic? If it is dynamic then there is a posibility your IP is different from the one in your IIS server. This kind of problem happened to me quite often when my ISP changed my IP... |
Forum: ASP Mar 2nd, 2005 |
| Replies: 2 Views: 4,966 Here si the code:
<a href="msg.asp?msgcode=<%=Request.QueryString("msgcode")%>&titleno=<%=Request.QueryString("titleno")%>">text</a> |
Forum: ASP Mar 2nd, 2005 |
| Replies: 2 Views: 4,928 Code:
Dim sLastName
sLastName = Request.Form("LastName")
sLastName = Replace(sLastName, "'", "''") |
Forum: ASP Feb 26th, 2005 |
| Replies: 3 Views: 5,299 Right click the DB, hit properties. Under properties, hit tab security. In the security window, click add IUSR and click apply. Boom your done.
www.ex-designz.net
Dexter |
Forum: ASP Feb 26th, 2005 |
| Replies: 8 Views: 3,956 I know this connection is generated from Dreamweaver UltraDev or MX.
Do you know how to use the repeat region in UltraDev or MX? It's fairly easy.
Here is my sample, no response.write use to... |
Forum: ASP Feb 26th, 2005 |
| Replies: 10 Views: 45,693 I thought ASP Web Dev teacher should know ASP and SQL bec they got paid good money. Anyway, I changed the coding structure not to use response.write, instead use block so that its easy to read.
... |
Forum: ASP Feb 8th, 2005 |
| Replies: 1 Views: 10,714 Use Request.Form to grab the value from the other page.
... |
Forum: ASP Feb 7th, 2005 |
| Replies: 3 Views: 10,057 I know Win 3k ships with CDOSYS, I don't know about CDONTS. Check your IIS 6 web server e-mail component installed. |
Forum: ASP Feb 4th, 2005 |
| Replies: 11 Views: 29,650 IIS/PWS is on the Win 2000 CD. You just have to install it. If you have the Win2K CD, load it your laptop and install the IIS / PWS. If you don't have it, ask a copy w/ your friends. I just installed... |
Forum: ASP Feb 4th, 2005 |
| Replies: 2 Views: 4,557 Ask the tech support of your hosting company on what folder in your web root has read,write and execute permission. This happened to my site when I first set up the photo upload. You can use the... |
Forum: ASP Feb 4th, 2005 |
| Replies: 5 Views: 16,857 Yes you can. I've done it in my site by combining the 2 db queries and display into one. I used function for the other db and it work flawlessly.
Dexter |
Forum: ASP Feb 4th, 2005 |
| Replies: 1 Views: 3,791 ASP broswertype object is not 100% reliable in detectinging browser type and version. I would recmmend getting a third pary software such as browserHawk.
Dexter |
Forum: ASP Feb 4th, 2005 |
| Replies: 2 Views: 3,350 Write a function to add them all.
I wrote an an e-commerce application use by my friend's site.
Dexter |
Forum: ASP Feb 3rd, 2005 |
| Replies: 0 Views: 4,911 I have use it in my site article,freeware,recipe,link directory,lyrics,template and games section. I was able to display the data in 3 cols and rows using CSS layout. It took me quite a while to... |