Hi,
I have a Edit Button(which is a Image Button) and when I click that ImageButton a new browser window should open and it should load the values previously entered by the user. The new window should contain the old values and now should be able to edit them.
For example,
If a user clicks on the Edit button whose userId= 329 it should open in a new window with the values entered by the user.
<%--<asp:ImageButton ID="ibtnEdit" runat="server" Text="Edit" ToolTip="Edit" ImageUrl="~/images/edit-icon.gif" />--%>
<%--<script type="text/javascript">
function EditInNewWindow()
{
window.open("abc.aspx?bid="+document.getElementById('<%#Eval("UserID") %>'));
}
</script>--%>
Can anyone plzz help.
I may be doing a blunder.
Thanks in Advance