Ask a Question related to ASP.NET General, Design and Development.
-
Salim Afþar #1
Re: Grid msgbox?
I found it.
private void grd_DeleteCommand(object source,
System.Web.UI.WebControls.DataGridCommandEventArgs e)
{
e.Item.Attributes.Add("OnClick", "return confirm('Are you sure you want to
delete this item?');");
}
"Salim Afþar" <safsar@luckyeye.com> wrote in message
news:eSauCL6SDHA.1920@TK2MSFTNGP11.phx.gbl...Yes> Hi,
> Can I show a message box after click event of a grid delete buttoncolumn?
> When the user clicks the button first I want to show a message box with> + No option. Then if user clicks Yes I'll delete the data from the SQL
> Server DB.
> Thanks in advance,
> Salim
>
>
>
Salim Afþar Guest
-
Msgbox in User COntrol
I have created a user control with an event procedure for a button in the code behind module. Code in this procedure uses the MsgBox function to... -
msgbox title
In my ASP script I call Javascript for a msgbox after the user has submitted the form of their resume information. I saw this example as a way to... -
MsgBox Error
Hi, everyone I use MsgBox("message") function, but error as follows: It is invalid to show a modal dialog or form when the application is not... -
MSGBOX Example
I am trying to get a message box to work in a web form. The code looks right But when I browse the form I get It is invalid to show a modal... -
msgbox?
Try adding this code to your Page_Load event: btnSave.Attributes.Add("OnClick", "return confirm('Are you sure you want do save?');"); Good...



Reply With Quote

