forked from robi-y/seproject-team-template
-
Notifications
You must be signed in to change notification settings - Fork 3
/
ChooseLesson.aspx.cs
executable file
·58 lines (43 loc) · 1.51 KB
/
ChooseLesson.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
using JumpUp;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.HtmlControls;
using System.Web.UI.WebControls;
namespace WebApplication1
{
public partial class MyLes : System.Web.UI.Page
{
Bl b = new Bl();
protected void Page_Load(object sender, EventArgs e)
{
if ((string)Session["userName"] == null)
Response.Redirect("Home.aspx");
string []arr =b.getAllLessons();
string[] arrDates = b.getAllDates();
HtmlGenericControl li;
HtmlGenericControl anchor;
for (int i = 0; i < arr.Length-1; i++)
{
li= new HtmlGenericControl("li");
u1.Controls.Add(li);
// li.InnerText = "aaa" + i;
anchor = new HtmlGenericControl("a");
anchor.Attributes.Add("href", "Add.aspx?name="+arr[i]+"&name_or_date=n");
anchor.InnerText = arr[i];
li.Controls.Add(anchor);
}
for (int i = 0; i < arrDates.Length - 1; i++)
{
li = new HtmlGenericControl("li");
u2.Controls.Add(li);
anchor = new HtmlGenericControl("a");
anchor.Attributes.Add("href", "Add.aspx?date=" + arrDates[i] + "&name_or_date=d");
anchor.InnerText = arrDates[i];
li.Controls.Add(anchor);
}
}
}
}