-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathHome.aspx.cs
35 lines (33 loc) · 981 Bytes
/
Home.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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
public partial class _Default : System.Web.UI.Page
{
protected void LinkButton1_Click(object sender, EventArgs e)
{
Response.Redirect("~/Content/Live.aspx");
}
protected void LinkButton2_Click(object sender, EventArgs e)
{
Response.Redirect("Players.aspx");
}
protected void LinkButton3_Click(object sender, EventArgs e)
{
Response.Redirect("News.aspx");
}
protected void imgLive_Click(object sender, ImageClickEventArgs e)
{
Response.Redirect("~/Content/Live.aspx");
}
protected void imgPlayers_Click(object sender, ImageClickEventArgs e)
{
Response.Redirect("Players.aspx");
}
protected void imgNews_Click(object sender, ImageClickEventArgs e)
{
Response.Redirect("News.aspx");
}
}