0
Line 19:     
static BalloonShopConnectionString1()

Line 20:  
   {

Line 21:
         dbConnectionString = ConfigurationManager.ConnectionStrings["BalloonShopConnection"].ConnectionString;

Line 22:
         dbProviderName = ConfigurationManager.ConnectionStrings["BalloonShopConnection"].ProviderName;

Line 23:         productsPerPage = System.Int32.Parse(ConfigurationManager.AppSettings["ProductsPerPage"]);

Line 21 Error
sujith karivelil
  • 26,861
  • 6
  • 46
  • 76

1 Answers1

0

null reference could happen on 21 or 22 if BalloonShopConnection is not defined in your web.config

Micah Armantrout
  • 6,072
  • 3
  • 33
  • 59