-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAuthor.aspx.cs
34 lines (29 loc) · 867 Bytes
/
Author.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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Data;
using System.Data.SqlClient;
using System.Configuration;
public partial class Author : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
if (Session["Email_ID"] == null)
{
Response.Redirect("Home.aspx");
}
UserBLL ub = new UserBLL();
User currentauthor = ub.Show(Session["Email_ID"].ToString());
lblShowID.Text = Session["Email_ID"].ToString();
lblShowFirst.Text = currentauthor.FirstName;
lblShowLast.Text = currentauthor.LastName;
}
protected void btnLogout_Click(object sender, EventArgs e)
{
Session.Remove("Email_ID");
Response.Redirect("Home.aspx");
}
}