如何将.aspx页面中的某些代码移动到.cs文件?

时间:2015-12-04 22:44:51

标签: c# asp.net-mvc

我有一个网页admin.aspx(代码位于admin.aspx.cs) 并希望通过将所有代码移动到新类admin.cs来重构它 所以我可以从aspx文件中调用这些函数。

我该怎么做?

// Contents of admin.aspx.cs

private void onlyID()
{
    connection.Open();
    SqlCommand command = new SqlCommand("select id from appointment");
    SqlDataReader reader = command.ExecuteReader();
    while (reader.Read())
    {
        id.Add(reader.GetInt64(0));
    }
    connection.Close();
    Response.Redirect("update-appointment.aspx");
}
public void fetchData()
{
    StringBuilder html = new StringBuilder();
    using (SqlCommand command = new SqlCommand())
    {
        command.Connection = connection;
        //command.CommandType = CommandType.Text;
        command.CommandText = "select * from appointment";
        connection.Open();
        SqlDataReader reader = command.ExecuteReader();
        html.Append("<table border='2' width='1100'  style='color:white'>");
        html.Append("<tr align='center'>" +
                        "<td style='font-size:25px'>Column 1</td>" +
                        "<td style='font-size:25px'>Column 2</td>" +
                        "<td style='font-size:25px'>Column 3</td>" +
                        "<td style='font-size:25px'>Column 4</td>" +
                        "<td style='font-size:25px'>Column 5</td>" +
                        "<td style='font-size:25px'>Column 6</td>" +
                        "<td style='font-size:25px'>Column 7</td>" +
                        "<td style='font-size:25px'>Column 8</td>" +
        "</tr>");
        if (reader.HasRows)
        {
            while (reader.Read())
            {
                html.Append("<tr align='center'>");
                html.Append("<td>" + reader[0] + "</td>");
                html.Append("<td>" + reader[1] + "</td>");
                html.Append("<td>" + reader[2] + "</td>");
                html.Append("<td>" + reader[3] + "</td>");
                html.Append("<td>" + reader[4] + "</td>");
                html.Append("<td>" + reader[5] + "</td>");
                html.Append("<td>" + reader[6] + "</td>");
                html.Append("<td>" + "<a href='update-appointment.aspx?id=" + reader[0] + "'><img src='../images/edit.png' style='height:25px;' /></a>" + " " + "<a href='delete-appointment.aspx?id="+reader[0]+"'><img src='../images/del.png' style='height:25px;' /></a>");
                html.Append("</tr>");
            }
            html.Append("</table>");
            PlaceHolder1.Controls.Add(new Literal { Text = html.ToString() });
        }
    }
}

1 个答案:

答案 0 :(得分:1)

创建名为App_Code的ASP.NET文件夹(为了更好的结构),在那里创建文件Admin.cs。和Admin.cs的内容:

private string ConStr = WebConfigurationManager.ConnectionString["ConnectionStringName"].ConnectionString;
private SqlConnection connection = new SqlConnection(ConStr);
private static void onlyID(ListBox id) //if control with ID "id" is ListBox, or change to another. You didn't post design page, that's why I just think
{
    try{
        connection.Open();
        SqlCommand command = new SqlCommand("select id from appointment");
        SqlDataReader reader = command.ExecuteReader();
        while (reader.Read() && reader.HasRows)
        {
            id.Add(reader.GetInt64(0));
        }
    }
    catch(Exception ex){
        //If some exception will occur
    }
    finally{
        connection.Close();
        Response.Redirect("update-appointment.aspx");
    }
}

public static void fetchData(ContentPlaceHolder PlaceHolder1)
{
    StringBuilder html = new StringBuilder();
    using (SqlCommand command = new SqlCommand())
    {
        command.Connection = connection;
        //command.CommandType = CommandType.Text;
        command.CommandText = "select * from appointment";
        connection.Open();
        SqlDataReader reader = command.ExecuteReader();
        html.Append("<table border='2' width='1100'  style='color:white'>");
        html.Append("<tr align='center'>" +
                    "<td style='font-size:25px'>Column 1</td>" +
                    "<td style='font-size:25px'>Column 2</td>" +
                    "<td style='font-size:25px'>Column 3</td>" +
                    "<td style='font-size:25px'>Column 4</td>" +
                    "<td style='font-size:25px'>Column 5</td>" +
                    "<td style='font-size:25px'>Column 6</td>" +
                    "<td style='font-size:25px'>Column 7</td>" +
                    "<td style='font-size:25px'>Column 8</td>" +
        "</tr>");
        if (reader.HasRows)
        {
            while (reader.Read())
            {
                html.Append("<tr align='center'>");
                html.Append("<td>" + reader[0] + "</td>");
                html.Append("<td>" + reader[1] + "</td>");
                html.Append("<td>" + reader[2] + "</td>");
                html.Append("<td>" + reader[3] + "</td>");
                html.Append("<td>" + reader[4] + "</td>");
                html.Append("<td>" + reader[5] + "</td>");
                html.Append("<td>" + reader[6] + "</td>");
                html.Append("<td>" + "<a href='update-appointment.aspx?id=" + reader[0] + "'><img src='../images/edit.png' style='height:25px;' /></a>" + " " + "<a href='delete-appointment.aspx?id="+reader[0]+"'><img src='../images/del.png' style='height:25px;' /></a>");
                html.Append("</tr>");
            }
            html.Append("</table>");
            PlaceHolder1.Controls.Add(new Literal { Text = html.ToString() });
        }
    }
}

然后只需在.aspx.cs文件中调用此函数:

private void Page_Load(object sender, EventArgs e){
    Admin.onlyID(id);
    Admin.fetchData(PlaceHolder1);
}
相关问题