Dropdown List values binding from controller

0 comments

Model Code

Public class StudentModel
{
public string Title { get; set; }
public int TitleId { get; set; }

}

ASP.NET MVC Performance Tips

0 comments

In this we will discuss about how can we increase the performance of website that using ASP.NET MVC.

1.   Remove Unused view engines

protected void Application_Start() 
{ 
    ViewEngines.Engines.Clear(); 
    ViewEngines.Engines.Add(new RazorViewEngine()); 
}

2. Deploying Production Code in Release Mode

Make sure your production application always runs in release mode in the web.config
<compilation debug=”false”></compilation>

<configuration> <system.web> <deployment retail=”true”></deployment> </system.web> </configuration>

PayPal Credit Card Integration in ASP.NET MVC

0 comments
In this post we will learn how to implement a PayPal credit card processing in your website.
You can create a developer account here https://developer.paypal.com/

Prerequisite

  1. PayPal API Credentials.
  2. API Signature.
paypal sandbox credentials
paypal sandbox credentials

Vikram Chandra Theme by BloggerThemes & NewWPThemes Sponsored by iBlogtoBlog