Guest User

Guest User

  • Tech Writer
  • 189
  • 24.8k

Object reference not set to an instance of an object.

Jun 16 2018 1:03 AM
  1. appproperty.cs  
  2.   
  3.     public DataTable getclientresource(string para_ResourceType ,object MobileNo )  
  4.         {  
  5.   
  6.             DataTable _getclientresource = maincon.getDataTable("select distinct ClientMaster.ClientName,ClientResources.DisplayName,LinkClientUser.Clientid,LinkClientUser.ClProductId,ClientResources.AccessKey  FROM LinkClientUser"  
  7.                        + " LinkClientUser inner join softplus_clients.ClientMaster ClientMaster on LinkClientUser.clientid = ClientMaster.clientid "  
  8.                        + " inner join ClientResources ClientResources on ClientResources.ClProductId = LinkClientUser.ClProductId  and ClientResources.ResourceType = LinkClientUser.ResourceType and ClientResources.AccessKey = LinkClientUser.AccessKey "  
  9.                        + " where LinkClientUser.mobileno=  '" + MobileNo + "' and LinkClientUser.ResourceType = '" + para_ResourceType + "' ""dtcomplist");  
  10.   
  11.                 return _getclientresource;  
  12.   
  13.               
  14.         }  
  1. Controller  
  2.   
  3.   
  4.         object mobileno;  
  5.         appproperty app = new appproperty();  
  6.         Profile p;  
  7.   
  8.         public ActionResult CompanyList()  
  9.         {  
  10.   
  11.             mobileno = Session["MobileNo"];  
  12.             DataTable dt = new DataTable();  
  13.             dt = app.getclientresource("LBROKSYS", mobileno);  
  14.             foreach(DataRow dr in dt.Rows)  
  15.             {          
  16.                 p.Displayname = dr["DisplayName"].ToString();  
  17.                 p.ClProductId = dr["ClProductId"].ToString();                             
  18.                 Session["ClProductId"] = dr["ClProductId"].ToString();  
  19.                  
  20.             }  
  21.            return View();  
  22.         }  

Answers (3)