martes, 16 de septiembre de 2014

Cambiar formato de numeros en ssrs


Seguir

http://blogs.msdn.com/b/nav/archive/2011/04/15/how-to-change-thousands-decimals-separators-in-rdl-reports.aspx

Remenber:

in ReportLayout design we can find that every Textbox has property named Language. Value could be: Default, Afrikaans,Afrikaans (South Africa) and etc. So if we for example set Language = French, then decimal will be 1 234 567,89; if Language=German (Germany) - number will be 1.234.567,89, if Language=English (United States) - number 1,234,567.89 and etc.

miércoles, 20 de agosto de 2014

Windows 8 -IIS 8 wcf

http://stackoverflow.com/questions/11116134/wcf-on-iis8-svc-handler-mapping-doesnt-work



c:\WINDOWS\Microsoft.NET\Framework\v4.0.30319\aspnet_regiis.exe -iru

jueves, 17 de julio de 2014

Agrupar y distinct en listas

 lp=lp.OrderBy(z => z.VC_TITULO).Distinct().ToList();
                lp = lp.GroupBy(x => x.VC_TITULO).Select(g => g.First()).ToList();

miércoles, 10 de julio de 2013

Ejecutar java script desde codebehind

System.Web.UI.ScriptManager.RegisterClientScriptBlock(Page, typeof(Page), "Script", "document.getElementById('" + button2.ClientID + "').style.display='none';", true);


tomado: http://www.aspdotnet-suresh.com/2010/08/calling-javascript-function-from.html