@@ -18,7 +18,7 @@ protected void Page_Load(object sender, EventArgs e)
18
18
// Example input values, replace with actual inputs from user or session
19
19
MobileNo = Session [ "accountmn" ] as String ;
20
20
//int NationalID = 2; // Example NationalID
21
- // string PlanName = "Premium Plan "; // Example PlanName
21
+ string PlanName = "Splan1 " ; // Example PlanName
22
22
23
23
//// ShowConsoleMessage("Retrieving all active benefits...");
24
24
ShowAllServicePlans ( connStr ) ;
@@ -31,7 +31,7 @@ protected void Page_Load(object sender, EventArgs e)
31
31
//ShowUnresolvedTickets(connStr, NationalID);
32
32
33
33
//ShowConsoleMessage("Retrieving the highest voucher...");
34
- // ShowHighestVoucher(connStr, MobileNo);
34
+ ShowHighestVoucher ( connStr , MobileNo ) ;
35
35
36
36
//ShowConsoleMessage("Retrieving remaining amount for the last payment...");
37
37
//ShowRemainingAmount(connStr, MobileNo, PlanName);
@@ -726,7 +726,7 @@ protected void btnSubmit_Cashback(object sender, EventArgs e)
726
726
protected void btnSubmit_RemainingExtraAmount ( object sender , EventArgs e )
727
727
{
728
728
string connStr = WebConfigurationManager . ConnectionStrings [ "Milestone2DB_24" ] . ToString ( ) ;
729
- string PlanName = TextBoxNationalID . Text ;
729
+ string PlanName = txtPlanName . Text ;
730
730
ShowRemainingAmount ( connStr , MobileNo , PlanName ) ;
731
731
ShowExtraAmount ( connStr , MobileNo , PlanName ) ;
732
732
ClearConsole ( ) ;
0 commit comments