fionasdesigns
New Member
Hi all I want to do is have a master table and have a link from the master table to the child table...I can do this in classic ADO in my sleep...but in ADO.net I am compeltely loss...I have a working page...but I don't know how to make a column with link to child page...here is what I got so far...<BR><BR><ASP
ataGrid id="MyDataGrid" runat="server"<BR> AllowSorting="True"<BR> BackColor="#ccccff" <BR> HorizontalAlign="Left"<BR> BorderColor="black"<BR> ShowFooter="false" <BR> CellPadding=3 <BR> CellSpacing="0"<BR> Font-Name="Verdana"<BR> Font-Size="8pt"<BR> AutoGenerateColumns="False"<BR> HeaderStyle-BackColor="#aaaadd"<BR> EnableViewState="false"<BR> OnItemCommand="dispDetails"><BR> <HeaderStyle BackColor="Blue" ForeColor="White" Font-Bold="True" HorizontalAlign="Center" /><BR> <AlternatingItemStyle BackColor="white"/><BR> <BR> <Columns><BR> <a href=http://aspmessageboard.com/archive/index.php/'ProductDetails.aspx?productID=<%# DataBinder.Eval(Container.DataItem, "ProductID") %>'></a><BR> <asp:ButtonColumn Text="Details" HeaderText="Invoice Details" CommandName="details" ButtonType="PushButton" /><BR> <asp:BoundColumn DataField="RecordID" HeaderText="Invoice ID" <BR> SortExpression="RecordID"<BR> /><BR> <asp:BoundColumn DataField="BilledFrom" HeaderText="Billed On" <BR> SortExpression="BilledFrom"<BR> /><BR> </Columns><BR> </ASP
ataGrid> <BR>

