|
|
|
|
|
| | |
|
Active Server Pages ASP control controls class classes module script Scripts applet CJWSoft ASPProtect ASPBanner ASPClassifieds
(Advanced)
(Components)
(Database)
(General)
(Vbscript)

|
|
Subject: |
Re: WebPage Updating...... |
From: |
outsider |
Date: |
8/25/2000 5:12:25 AM |
IP: |
212.95.172.2 |
You can create database(or add table) with columns userID(int),link(char), imagename(char),news(text) etc..
After that (when user fills form and you update database) generate html taking values from dbase:
<%
……………….
‘ oRS – open recordset
‘ Your SQL Statement could be: SELECT * FROM table_name WHERE userID =….”
StrLink = oRS(“link”)
StrImageName = oRS(“imagename”)
……………………..
%>
<img src=”<%= StrImageName%>”
< a href=”<%= StrLink%>”><%= StrLink %></a>
…………………………………..
Best Regards |
Previous Message
Follow Up - Re: WebPage Updating...... - Celo 8/26/2000 2:26:53 AM
|
|
|
|
|
|
|
|
|
|
|
|