Can someone help me with the following problem?
<asp:LinkButton ID="deleteButton" runat="server" CommandName="Delete" Text="Delete"
OnClientClick='<%# string.Format("javascript:return confirm({0})", Eval("Id") ) %>' />
I have a messagebox with only the 'Id' when i click on delete button. But i want to put some text before the 'Id' like are you sure to delete 'Id'?
Im not so good in javascript so i hope someone can help me
thanks!