thekindofme

Stories submitted by thekindofme

Validation Frameworks for .NET Compact Framework(thekindofme.wordpress.com)

submitted by thekindofmethekindofme(55) 2 years, 4 months ago

If you google "Validation Frameworks for .NET Compact Framework" you would not find any 'satisfying' results. I tried it and i didn’t (.net validation framework intends to support the .net compact framework. But this is still in the todo list) came across any validation framework that officially supports .net CF. But most of .net validation frameworks out there or at least certain parts of the frameworks can be used in a .net cf project. I had to do some research on this topic recently so i am writing down my finding here.... read more...

add a comment |category: |Views: 22

tags: another

Using Custom T4 templates To Generate Better Controllers in ASP MVC(thekindofme.wordpress.com)

submitted by thekindofmethekindofme(55) 2 years, 10 months ago

While working on this asp.net mvc project at work i couldn't help notice that there are lots of code that is getting copy-pasted from one controller to the other, when i am adding a new controller. now as you know mvc fm comes with a set of T4 templates that lets you add views and controllers in such a way that some code in these views and controllers are generated for you. this is grate. but you can customize the original templates to your needs and make them generate more of the code for you. (please note that i am talking about controllers that are responsible for mostly CURD on a given single model.).... read more...

add a comment |category: |Views: 21

tags: another

ASP.net Membership Password Hashing Algorithm(thekindofme.wordpress.com)

submitted by thekindofmethekindofme(55) 3 years, 2 months ago

how does asp.net password hashing algorithm works? so when another application wants to use the that user login data for some task, it knows how to generate the correct hash and do the authentication for the users. read more...

add a comment |category: |Views: 40

tags: another

Enum.GetValues on .net compact framework(thekindofme.wordpress.com)

submitted by thekindofmethekindofme(55) 3 years, 2 months ago

i recently needed to use Enum.GetValues on a .netcf project. but unfortunately it is not there in .netcf. googling gives a lot of solutions that we can use in .netcf. but i couldn’t find one that worked exactly as Enum.GetValue did. Retrieves an array of the values of the constants in a specified enumeration. is the method description for the Enum.GetValue, taken from msdn.com. most of the solutions online returned only an array of the constants. not their values. so i came up with the following.... read more...

add a comment |category: |Views: 101

tags: another

A Grid with Ajax/Pagination/Sorting/Filtering on ASP.net MVC with ExtJ(thekindofme.wordpress.com)

submitted by thekindofmethekindofme(55) 3 years, 3 months ago

How to construct a Grid and the back end controllers that supportes Ajax, Pagination, Sorting and Filtering. this is done using ExtJS, Entity Framework and asp.net mvc read more...

add a comment |category: |Views: 265

tags: another

Ajax Enabling MVCContrib Grid’s Pagination with jQuery(thekindofme.wordpress.com)

submitted by thekindofmethekindofme(55) 3 years, 3 months ago

How to 'ajaxify' MVCContrib Grid's Pagination using jQuery... read more...

add a comment |category: |Views: 475

tags: another