hello sir
I am using class in my web application
I want to show errors in Radalert
I have used following code but it does not work
it gives error as "Object reference not set to instance of an object"
please help
I am using class in my web application
I want to show errors in Radalert
I have used following code but it does not work
it gives error as "Object reference not set to instance of an object"
please help
Try Dim Rad As New RadWindowManager Dim newWindow As New RadWindow newWindow.VisibleOnPageLoad = True Rad.Windows.Add(newWindow) Catch ex As Exception Rad.RadAlert(ex.Message, 330, 100, "Error", "") End Try