-
Notifications
You must be signed in to change notification settings - Fork 1
/
AdminRestControl.aspx.cs
64 lines (52 loc) · 1.92 KB
/
AdminRestControl.aspx.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace FoodFest
{
public partial class AdminRestControl : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
if ((Session["LoggedInUserName"] != null))
{
LinkButton LinkButton1 = (LinkButton)Master.FindControl("LinkButton1");
LinkButton1.Visible = false;
LinkButton LinkButton2 = (LinkButton)Master.FindControl("LinkButton2");
LinkButton2.Visible = true;
Label Welcome_label = (Label)Master.FindControl("Welcome_label");
Welcome_label.Text = "Welcome " + Session["LoggedInUserName"];
Welcome_label.Visible = true;
}
else
{
LinkButton LinkButton1 = (LinkButton)Master.FindControl("LinkButton1");
LinkButton1.Visible = true;
LinkButton LinkButton2 = (LinkButton)Master.FindControl("LinkButton2");
LinkButton2.Visible = false;
}
}
protected void Button1_Click(object sender, EventArgs e)
{
Response.Redirect("~/Add_restaurant.aspx");
}
protected void Button2_Click(object sender, EventArgs e)
{
Response.Redirect("~/EditRestaurant.aspx");
}
protected void Button3_Click(object sender, EventArgs e)
{
Response.Redirect("~/AdminViewAllRestaurants.aspx");
}
protected void Button4_Click(object sender, EventArgs e)
{
Response.Redirect("~/AddFoodItem.aspx");
}
protected void Button5_Click(object sender, EventArgs e)
{
Response.Redirect("~/EditFoodItem.aspx");
}
}
}