Current location: Hot Scripts Forums » Programming Languages » ASP » records from database with the link


records from database with the link

Reply
  #1 (permalink)  
Old 09-17-03, 09:37 PM
sasi sasi is offline
Newbie Coder
 
Join Date: Aug 2003
Posts: 17
Thanks: 0
Thanked 0 Times in 0 Posts
records from database with the link

i would like to display the filenames from a database together with the it's own link.so that when i click on the link of the file name it..should be able to show the content of the file...how to do this..plz help


currently im having the jsp code for it as below:


<%
stmt = con.createStatement();
rs = stmt.executeQuery("SELECT * FROM Uploadnotes");

if (rs != null)
{
while (rs.next()) {
String tajuk = rs.getString("Title");
String path = rs.getString("Filepath");

%>
<tr>
<td>
<center>
<p><a href =<%=path%> > <font face="Arial, Helvetica, sans-serif" size="2" color="#0000FF"><b><%=tajuk%></b></font></a></p>
</center>
</td>
</tr>
<%
}
}
stmt.close();
con.close();
%>



how to do this using asp?....
Reply With Quote
  #2 (permalink)  
Old 09-20-03, 01:01 AM
Shane Shane is offline
Coding Addict
 
Join Date: Jun 2003
Location: Maryland, US
Posts: 268
Thanks: 0
Thanked 0 Times in 0 Posts
What's being displayed now?
__________________
Shane Bauer
Microsoft Certified Professional (MCP) - ASP.NET
ASP/ASP.net, C#, VB/VB.NET, PHP, Perl, SQL
Reply With Quote
  #3 (permalink)  
Old 09-24-03, 04:41 AM
Stealth Stealth is offline
1337 pr0gr4mm3r
 
Join Date: Jun 2003
Location: Glasgow, Scotland
Posts: 188
Thanks: 0
Thanked 0 Times in 0 Posts
<%
rs.open "SELECT * FROM Uploadnotes",con
do while not rs.eof

tajuk = rs.getString("Title");
path = rs.getString("Filepath");

%>
<tr>
<td>
<center>
<p><a href =<%=path%> > <font face="Arial, Helvetica, sans-serif" size="2" color="#0000FF"><b><%=tajuk%></b></font></a></p>
</center>
</td>
</tr>
<%
rs.movenext
loop

rs.close
%>
Reply With Quote
Reply

Bookmarks


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Share database over the Internet nitinkedia The Lounge 2 11-20-03 02:07 PM
Different type of link counter mdhall Script Requests 2 10-10-03 01:19 PM
SQL database registration form help vinhkhuong PHP 3 10-10-03 03:49 AM
Share database over the internet nitinkedia PHP 0 07-11-03 12:22 AM
Share database over the Internet nitinkedia New Members & Introductions 1 07-10-03 02:50 PM


All times are GMT -5. The time now is 03:34 PM.
vBulletin® Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.