T
Troy Whitlow
I am developing a web application using aspx web forms and
would like to send message boxes to the client browser
when certain conditions and checks are performed.
*********************************************************
Example:
Try
Perform some actions
Catch ex as system.exception ' Actions failed
I would like to send the error to the screen in the form
of a messagebox on the client browser
End try
********************************************************
Additionally, I would like to be able to prompt a
messagebox to ask questions and then process based on the
response. Similar to do you want to delete all the records
selected prompt on a yes choice then delete the records on
a no choice cancel.
All of my server code is in the Code Behind pages for each
of my aspx pages. Basically all the display is in the aspx
and all the code is in the code behind.
Any help would be greatly appreciated, especially any
sample code examples. This is my first application using
aspx. I have been writing windows apps and windows
services, but the web provides for some additional
challenges.
Troy Whitlow
would like to send message boxes to the client browser
when certain conditions and checks are performed.
*********************************************************
Example:
Try
Perform some actions
Catch ex as system.exception ' Actions failed
I would like to send the error to the screen in the form
of a messagebox on the client browser
End try
********************************************************
Additionally, I would like to be able to prompt a
messagebox to ask questions and then process based on the
response. Similar to do you want to delete all the records
selected prompt on a yes choice then delete the records on
a no choice cancel.
All of my server code is in the Code Behind pages for each
of my aspx pages. Basically all the display is in the aspx
and all the code is in the code behind.
Any help would be greatly appreciated, especially any
sample code examples. This is my first application using
aspx. I have been writing windows apps and windows
services, but the web provides for some additional
challenges.
Troy Whitlow