or

Hello,
after i installed Q1 2009 beta all my asp.net applications give me the following error:
Descrizione: Eccezione non gestita durante l'esecuzione della richiesta Web corrente. Per ulteriori informazioni sull'errore e sul suo punto di origine nel codice, vedere l'analisi dello stack.
Dettagli eccezione: System.MethodAccessException: System.ServiceModel.Diagnostics.DiagnosticTrace..ctor(System.ServiceModel.Diagnostics.TraceSourceKind, System.String, System.String)
Errore nel codice sorgente:
Durante l'esecuzione della richiesta Web corrente รจ stata generata un'eccezione non gestita. Per informazioni sull'origine e la posizione dell'eccezione, vedere l'analisi dello stack dell'eccezione riportata di seguito. |
|

Hello,
var combo = <%= RadComboBox1.ClientID %>; var userControlId = '<%= ID %>'; var selectionSetUrl = "../SelectionSets/NetworkSet.aspx"; var selectionSetType = '<%= Fox.Fbc.Rds.RdsWeb.Interfaces.SelectionSetTypeCode.NET.ToString() %>'; EditSelectionSetInModalDialogHelper(selectionSetUrl, selectionSetType, userControlId, combo.GetText()); According to the documentation GetText is supposed to be replaced with get_text. So, I replace the last line with this one:
EditSelectionSetInModalDialogHelper(selectionSetUrl, selectionSetType, userControlId, combo.get_text());And still get the same error.
Please help.
Thanks,
Olga
Hi,
I am trying to hide and show RadComboBox.
But this code doesn't seem to be working. I checked in IE and FireFox. Thank you.
$.ajax({
url: applicationPath + "/test/Test.svc/GetResultById",
type: "POST",
dataType: "json",
data: '{"sId":' + sender.get_value() + '}',
contentType: "application/json; charset=utf-8",
success: function(result)
{
var combo = "<%= RadComboBox1.ClientID %>");
if(result.d == false)
{
combo.hideDropDown();
}
else
{
combo.showDropDown();
}
}
in my button click event i have:
StringBuilder strTXTFileBuilder = new StringBuilder(); Response.Clear(); Response.AddHeader("content-disposition", "attachment;filename="ExportResult.txt"); Response.Charset = "";
Response.ContentType = "application/vnd.text"; StringWriter stringWrite = new StringWriter(); HtmlTextWriter htmlWrite = new HtmlTextWriter(stringWrite); Response.Write(strTXTFileBuilder.ToString()); Response.End();