Click to See Complete Forum and Search --> : I am facing this error i want it displayed


asifbhura
06-01-2006, 07:35 AM
Hi everyone

I am facing this error. I want to display this error as msgbox

Please help me

System.InvalidCastException: Object cannot be cast from DBNull to other types.

i want this error as msgbox or on particular page

i tried like


try
{

some code here i m facing error
}
catch(Exception ex)

{
ex.Message;
}

but it doesnt work. i want

regards,
ASIF

DynamicArray
06-01-2006, 07:41 AM
To just debug, you could try:
Response.write(ex.Message)
or if you have a label control on your page called lblError:
lblError.Text = ex.Message