I use to show the error messages that I get in a try block.
try
{
...
}
catch (Exception ex)
{
... (ex.Message);
}
In a Windows App I use: Message.Show(ex .Message);
As the web service can be used in Windows apps or ASP.NET apps, what is the
way to do that?
Regards,
Diego F.
try
{
...
}
catch (Exception ex)
{
... (ex.Message);
}
In a Windows App I use: Message.Show(ex .Message);
As the web service can be used in Windows apps or ASP.NET apps, what is the
way to do that?
Regards,
Diego F.
Comment