adminHomeCoding
adminHomeCoding
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Data.SqlClient;
using System.Configuration;
namespace EmployeeManagementSystem.Home
{
public partial class adminHome : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
LoadTotalPendingUsersCount();
LoadTotalUsersCount();
}
}
Response.Redirect("http://localhost:41773/admin/employeeManagement.aspx");
}
}
}