Code Master - A reference guide for programmer's

Programming is fun and interesting. As you all know, sometime we programmers stucks in the middle way of coding without getting a solution. Blogs like this will help us to find a path to solve our problems. The contents of this blog are the solutions that I found by myself and from other sources. Sharing such solutions is also interesting. Thank you!

Thursday, January 26, 2017

Simple encryption and decryption using key value in C#

›
Encryption public string Encrypt(string plainText) { try { string key = " abcd123xyz " + ...
Wednesday, January 25, 2017

Area registration OR Area routing in MVC C#

›
Sample public override void RegisterArea(AreaRegistrationContext context) { context.MapRoute( "Cpanel_de...

Manage css dynamically in razor view based on condition - MVC

›
Sample <div class="col-lg-4 col-md-3 @(app.AppPath=="#"?"disableDiv":"")"> Your data ...

Redirect to an action in another area in MVC

›
Sample <a href="@Url.Action("Index", "Home",new {area="Cpanel"})">
‹
›
Home
View web version
Powered by Blogger.