Dear,
Actually I was confused where to post this problem...
I am making a search page whose details are as follows
textbox , button
button click
{
dataset ds = getdata("select id,desc_hort,desc_long from my_db where id='" + textbox.text + "';");
radgrid.datasource = ds;
radgrid.databind();
}
radgrid
.......... <telerik:GridTemplateColumn UniqueName="tempcol">
<ItemTemplate>
<tr>
<td>
<a href="details.aspx?id='<%#Eval("id") %>' " target=_blank> <%#Eval("desc_short")%></a><br>
<%#Eval("desc_long")%>
</td>
</tr>
</ItemTemplate>
</telerik:GridTemplateColumn>
all is going well but i felt to implement a new concept of radwindow
now problem with me is that insted of opening details in new page with target=_blank i want to open link in
radwindow
i reffered example
http://demos.telerik.com/aspnet-ajax/window/examples/demoemail/defaultcs.aspx
but as i am a newbie i am unable to understand where to make changes to open that link in radwindow
thanks in advance