is there a possibility to send a error message to the client in case of an exception in StiWebDesigner.GetPreviewDataSet? The Error #2032 and "Server message is empty" is not very helpful
Code: Select all
protected void stiWebDesigner_GetPreviewDataSet(object sender, StiWebDesigner.StiPreviewDataSetEventArgs e)
{
try
{
e.PreviewDataSet = CreateDataSet();
}
catch (Exception ex)
{
// howto send message to client?
}
}