Skip to content

Commit 9f2c1a8

Browse files
committed
Add project files.
1 parent b0827d6 commit 9f2c1a8

File tree

77 files changed

+5656
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

77 files changed

+5656
-0
lines changed

WebApplication2.sln

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio Version 17
4+
VisualStudioVersion = 17.11.35431.28
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WebApplication2", "WebApplication2\WebApplication2.csproj", "{C34504EE-1F5F-4B43-B08E-79D9EF552BF5}"
7+
EndProject
8+
Global
9+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
10+
Debug|Any CPU = Debug|Any CPU
11+
Release|Any CPU = Release|Any CPU
12+
EndGlobalSection
13+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
14+
{C34504EE-1F5F-4B43-B08E-79D9EF552BF5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15+
{C34504EE-1F5F-4B43-B08E-79D9EF552BF5}.Debug|Any CPU.Build.0 = Debug|Any CPU
16+
{C34504EE-1F5F-4B43-B08E-79D9EF552BF5}.Release|Any CPU.ActiveCfg = Release|Any CPU
17+
{C34504EE-1F5F-4B43-B08E-79D9EF552BF5}.Release|Any CPU.Build.0 = Release|Any CPU
18+
EndGlobalSection
19+
GlobalSection(SolutionProperties) = preSolution
20+
HideSolutionNode = FALSE
21+
EndGlobalSection
22+
GlobalSection(ExtensibilityGlobals) = postSolution
23+
SolutionGuid = {0945BCB8-D492-4415-88F3-19F1DC36266B}
24+
EndGlobalSection
25+
EndGlobal

WebApplication2/Controls/Sidebar.ascx

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="Sidebar.ascx.cs" Inherits="WebApplication2.Controls.WebUserControl1" %>
2+
<ul>
3+
<li><a href="/Pages/Home/Home.aspx"><i class='bx bxs-home'></i><span>Dashboard</span></a></li>
4+
<li><a href="/Pages/Physical Stores/PhysicalStoresWithVouchers.aspx"><i class='bx bx-store-alt'></i><span>Physical Stores' Vouchers</span></a></li>
5+
<li><a href="/Pages/resolved tickets/Resolved Tickets.aspx"><i class='bx bx-list-check'></i><span>Resolved Tickets</span></a></li>
6+
<li><a href="/Pages/customer plans/CustomersWithPlans.aspx"><i class='bx bx-notepad'></i><span>Users with Service Plans</span></a></li>
7+
<li><a href="/Pages/SubscriptionOnDate/CustomerAccountsSubscribedOnInputIdAndDate.aspx"><i class='bx bx-calendar'></i><span>Subscription By Date</span></a></li>
8+
<li><a href="/Pages/account usage/AccountUsagePage.aspx"><i class='bx bx-bar-chart-alt-2'></i><span>Account Usage Page</span></a></li>
9+
<li><a href="/Pages/remove benefits/RemoveBenefitsPage.aspx"><i class='bx bx-x'></i><span>Remove Benefits Page</span></a></li>
10+
<li><a href="/Pages/SMS offers/ListSMSOffers.aspx"><i class='bx bx-chat'></i><span>List SMS Offers</span></a></li>
11+
<li><a href="/Pages/Wallets/Wallets.aspx"><i class='bx bx-wallet'></i><span>Wallets</span></a></li>
12+
<li><a href="/Pages/Eshops/Eshops.aspx"><i class='bx bx-shopping-bag' ></i><span>Eshop Details</span></a></li>
13+
<li><a href="/Pages/Transactions/Transactions.aspx"><i class='bx bxs-credit-card-alt' ></i><span>Transactions</span></a></li>
14+
<li><a href="/Pages/Cashbacks/Cashbacks.aspx"><i class='bx bx-dollar-circle'></i><span>Cashbacks</span></a></li>
15+
<li><a href="/Pages/PaymentPoints/PaymentPoints.aspx"><i class='bx bx-gift'></i><span>Payment Points</span></a></li>
16+
<li><a href="/Pages/PlanCashback/PlanCashback.aspx"><i class='bx bx-money'></i><span>Plan Cashback</span></a></li>
17+
<li><a href="/Pages/AverageTransactions/AverageTransactions.aspx"><i class='bx bx-line-chart'></i><span>Average Transactions</span></a></li>
18+
<li><a href="/Pages/MobileSearch/MobileSearch.aspx"><i class='bx bx-search-alt-2'></i><span>Wallet Mobile Search</span></a></li>
19+
<li><a href="/Pages/UpdatePoints/UpdatePoints.aspx"><i class='bx bx-sync' ></i><span>Update Points</span></a></li>
20+
</ul>
21+
22+
<script type="text/javascript">
23+
// Get the current page URL
24+
var currentUrl = window.location.pathname;
25+
26+
// Get all the sidebar links
27+
var sidebarLinks = document.querySelectorAll('#sidebar ul li a');
28+
29+
// Loop through the links and check if the current URL matches
30+
for (var i = 0; i < sidebarLinks.length; i++) {
31+
var link = sidebarLinks[i];
32+
if (link.href.indexOf(currentUrl) > -1) {
33+
link.parentElement.classList.add("active");
34+
35+
break;
36+
}
37+
}
38+
</script>
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
using System;
2+
using System.Collections.Generic;
3+
using System.Linq;
4+
using System.Web;
5+
using System.Web.UI;
6+
using System.Web.UI.WebControls;
7+
8+
namespace WebApplication2.Controls
9+
{
10+
public partial class WebUserControl1 : System.Web.UI.UserControl
11+
{
12+
protected void Page_Load(object sender, EventArgs e)
13+
{
14+
15+
}
16+
}
17+
}

WebApplication2/Controls/Sidebar.ascx.designer.cs

Lines changed: 17 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)