Password Encryption C#
Password Encryption using MD5 Hash FormsAuthentication.HashPasswordForStoringInConfigFile(myPassword, "md5");
Password Encryption using MD5 Hash FormsAuthentication.HashPasswordForStoringInConfigFile(myPassword, "md5");
Get jqGrid total row count <script> var rowCount = $('#gridName').getGridParam('reccount'); console.log(rowCount); </script> For older versions of jqGrid this should work...
var clients = from c in context.clients where c.date_added &gt; some_date orderby c.clientname ascending/descending select new { c.client_id, c.client_name };
Using jquery we can set php session variable which is quite handy You would definitely put some input validations Html...
In Mysql LIMITÂ is used to limit query results For example SELECT * FROM Employees LIMIT 50 will output first...
For splitting a string use Split on strings like string url = &quot;http://www.memorypointer.com&quot;; string tokens = url.split('.'); tokens will output...
Mysql provides an easy to use function to convert string to date/datetime STR_TO_DATE(string, format) Example SELECT STR_TO_DATE('01/12/2012', '%d/%m/%Y') Output 2012-12-01
Developed a class for reading CSV to Datatable in C#. Posting it on memorypointer.com so someone could find it useful...
tags
To display <p> or <form> tag on the same line or block without line breaks before and after use following...
Salesforce Bulk API Bulk API is based on REST and is used for processing large sets of data. It allowes...