Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

New window from datagrid

Status
Not open for further replies.

Saint1234

Programmer
Feb 18, 2004
25
IE
I am using a datadrid with a buttonColumn. I know that you can open a new window using javascript and link from within the html code. But can you open a new window by clicking on the buttonColumn from within the datagrid? The datagrid code is:

<asp:datagrid id="Master" runat="server" Font-Name="Verdana" Font-Size="8pt" HeaderStyle-BackColor="#aaaadd" SelectedItemStyle-BackColor="yellow" OnItemCommand="Master_cmdShowDetails" BorderColor="Black"
BorderWidth="1px" CellPadding="3" Font-Names="Verdana">

<HeaderStyle BackColor="#AAAADD"></HeaderStyle>
<SelectedItemStyle BackColor="Yellow"></SelectedItemStyle>
<Columns>
<asp:ButtonColumn Text="Show Details" HeaderText="Details" CommandName="cmdShowDetails"></asp:ButtonColumn>
</Columns>
</asp:datagrid>
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top