ASP.NET

Moderators: None (Apply to moderate this forum)
Number of threads: 1735
Number of posts: 3305

This Forum Only
Post New Thread
Single Post View       Linear View       Threaded View      f

Report
How do I hyperlink the table cell Posted by jzhou819 on 13 Feb 2007 at 8:25 PM
Hi,
I want to populate some data from Access database in a table, but I don't know how to make the table cell content clickable. See my code below:
 Dim strConnection As String = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=D:\website\forms\App_Data\forms.mdb;Persist Security Info=False"

        Dim cn As New OleDbConnection(strConnection)
        cn.Open()
        Dim strSQL As String = "select * from form "
        Dim cm As New OleDbCommand(strSQL, cn)
        Dim dr As OleDbDataReader =  cm.ExecuteReader(CommandBehavior.CloseConnection)
        While dr.Read
            Dim trRow As New HtmlTableRow
            Dim tdData As New HtmlTableCell
            tdData.InnerHtml = dr("form_number").ToString
            trRow.Cells.Add(tdData)

            tdData = New HtmlTableCell
            tdData.InnerHtml = dr("form_name").ToString
            trRow.Cells.Add(tdData)

            tbloutput.rows.add(trRow)

        End While



How do I make the form_number field as a hyperlink? Or should I use other controls? Thank you for your help in advance!




 

Recent Jobs

Official Programmer's Heaven Blogs
Web Hosting | Browser and Social Games | Gadgets

Popular resources on Programmersheaven.com
Assembly | Basic | C | C# | C++ | Delphi | Flash | Java | JavaScript | Pascal | Perl | PHP | Python | Ruby | Visual Basic
© Copyright 2011 Programmersheaven.com - All rights reserved.
Reproduction in whole or in part, in any form or medium without express written permission is prohibited.
Violators of this policy may be subject to legal action. Please read our Terms Of Use and Privacy Statement for more information.
Operated by CommunityHeaven, a BootstrapLabs company.