Question : How do I get links to work from inside a ASP.NET table on masterpage?

I am trying to insert a table on a master page so that different links to pdf forms etc can look organized.
One link in each cell of the table.  Here is the markup code from the masterpage that is not working.
Can I put links in a table?
 <table class="style1">
    <tr>
      <td>
      <a href="pdf/AcmeCreditApplication.pdf">Acme Credit Application</a>
        &nbsp;</td>
      <td>

        &nbsp;</td>
      <td>
        &nbsp;</td>
    </tr>

Answer : How do I get links to work from inside a ASP.NET table on masterpage?

You can try doing it this way.  Note that I just used an ASP.NET table control.  You can still use HTML table for the links if you want.  In the sample code below, in one cell, it uses a linkbutton and in the other one, an HTML anchor.  This should work on a master page as I use it a lot.  Check that your relative address in the href is pointing to the correct file location as well.  I hope this helps.
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
<asp:Table ID="tblSideBar" runat="server" CellPadding="0" CellSpacing="0" BorderWidth="0" Width="100%">
                    
                    <asp:TableRow>
                        <asp:TableCell>
                            <asp:LinkButton ID="lnkOpenPDFFile" runat="server">Open PDF File</asp:LinkButton>
                        </asp:TableCell>
                    </asp:TableRow>                   
                    <asp:TableRow>
                        <asp:TableCell>
                            <a href="pdf/AcmeCreditApplication.pdf" target="_blank">Acme Credit Application</a>
                        </asp:TableCell>
                    </asp:TableRow>
 </asp:Table>
Random Solutions  
 
programming4us programming4us