Posts

Showing posts from January, 2017

Convert integer into its character equivalent in Javascript

I want to convert an integer into its character equivalent based on the alphabet. For example: 0 => a 1 => b 2 => c 3 => d etc. I could build an array and just look it up when I need it but I'm wondering if there's a built in function to do this for me? All the examples i've found via Google are working with ASCII values and not a characters position in the alphabet. Assuming you want lower case letters: var chr = String . fromCharCode ( 97 + n ); // where n is 0, 1, 2 ... 97 is the ASCII code for lower case 'a'. If you want uppercase letters, replace 97 with 65 (uppercase 'A'). Note that if  n > 25 , you will get out of the range of letters. Reference:http://stackoverflow.com/questions/3145030/convert-integer-into-its-character-equivalent-in-javascript

ASP.NET Expand grid view

Source :  http://www.aspsnippets.com/Articles/ASPNet-Nested-GridViews-GridView-inside-GridView-with-Expand-and-Collapse-feature.aspx < asp : GridView   ID ="gvCustomers"   runat ="server"   AutoGenerateColumns ="false"   CssClass ="Grid"      DataKeyNames ="CustomerID"   OnRowDataBound ="OnRowDataBound">      < Columns >          < asp : TemplateField >              < ItemTemplate >                  < img   alt   =   ""   style =" cursor : pointer"   src ="images/plus.png"   />                  < asp : Panel   ID ="pnlOrders"   runat ="server"   Style =" display : none"...

Exception from HRESULT: 0x80070057 (E_INVALIDARG)

Could not load file or assembly 'AjaxControlToolkit' or one of its dependencies. The parameter is incorrect. (Exception from HRESULT: 0x80070057 (E_INVALIDARG))     [FileLoadException: Could not load file or assembly 'AjaxControlToolkit' or one of its dependencies. The parameter is incorrect. (Exception from HRESULT: 0x80070057 (E_INVALIDARG))] System.Reflection.Assembly._nLoad(AssemblyName fileName, String codeBase, Evidence assemblySecurity, Assembly locationHint, StackCrawlMark& stackMark, Boolean throwOnFileNotFound, Boolean forIntrospection) +0 System.Reflection.Assembly.InternalLoad(AssemblyName assemblyRef, Evidence assemblySecurity, StackCrawlMark& stackMark, Boolean forIntrospection) +416 System.Reflection.Assembly.InternalLoad(String assemblyString, Evidence assemblySecurity, StackCrawlMark& stackMark, Boolean forIntrospection) +166 System.Reflection.Assembly.Load(String assemblyString) +35 System.Web.Configuration.CompilationS...