C# 用C构建html的更好方法是什么?

C# 用C构建html的更好方法是什么?,c#,html,sql,dynamic,C#,Html,Sql,Dynamic,我对C和web表单非常陌生。我正在构建一个站点,它从SQL数据库中提取数据并呈现给查看器。对于使用C构建HTML、从sql数据库提取和显示数据,您有什么建议 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.

我对C和web表单非常陌生。我正在构建一个站点,它从SQL数据库中提取数据并呈现给查看器。对于使用C构建HTML、从sql数据库提取和显示数据,您有什么建议

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.Sql;
using System.Data.SqlClient;

public partial class csusaCentralCallFlows : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
    if (IsPostBack)
    {
        GetCallFlowData();
    }
    else if (!IsPostBack)
    {
        GenerateCallFlowDropDown();
    }
}
private void GenerateCallFlowDropDown()
{

    SqlConnection CFPull = new SqlConnection(System.Web.Configuration.WebConfigurationManager.ConnectionStrings["csusaCDB"].ConnectionString);
    string sql = @"
                SELECT DISTINCT
                    CustomerName
                FROM
                    CustomerData
                ";
    SqlCommand cmd = new SqlCommand(sql, CFPull);
    DataTable dt = new DataTable();
    CFPull.Open();
    dt.Load(cmd.ExecuteReader());
    CFPull.Close();
    string html = "";
    html = "<select name=\"CustomerNameDD\" onChange=\"SubmitForm()\">";
    html += "<option>Select a Call Flow</option>";
    int rowCount = dt.Rows.Count;

    for (int i = 0; i < rowCount; i++)
    {
        html += "<option>";
        html += dt.Rows[i].ItemArray.GetValue(0);
        html += "</option>";
    }

    html += "</select>";
    DropDownDiv.InnerHtml += html;
}
private void GetCallFlowData()
{

    ResultsDiv.InnerHtml = "";
    string coName = Request.Form["CustomerNameDD"];
    SqlConnection PullDataConn = new SqlConnection(System.Web.Configuration.WebConfigurationManager.ConnectionStrings["csusaCDB"].ConnectionString);
    string sql = @"
                SELECT CustomerData.CustomerName, CallFlowData.contactPhone, CallFlowData.contactEmail, CallFlowData.contactOther
                FROM CallFlowData
                INNER JOIN CustomerData ON CustomerData.CustomerID = CallFlowData.CallFlowID
                WHERE CustomerData.CustomerName LIKE @CustomerName
        ";

    SqlCommand cmd = new SqlCommand(sql, PullDataConn);
    cmd.Parameters.AddWithValue("CustomerName", coName);
    DataTable dt = new DataTable();
    PullDataConn.Open();
    dt.Load(cmd.ExecuteReader());
    PullDataConn.Close();

    int rowCount = dt.Rows.Count;

    string html = "";

    for (int i = 0; i < rowCount; i++)
    {
        html += "<div class='divContainer'>" + 
                    "<table class='resultsTable1'>" + 
                    "<tr><td colspan='2' class='tdCoName'>";
        html += dt.Rows[i].ItemArray.GetValue(0);
        html += "</td></tr>" + 
                    "<tr><td class='contactCat'>HotLine</td>" +
                    "<td class='tdHeadingPadding'>";
        html += dt.Rows[i].ItemArray.GetValue(1);
        html += "</td></tr>" +
                    "<tr><td class='contactCat'>e-Mail</td>" +
                    "<td class='tdHeadingPadding'>";
        html += dt.Rows[i].ItemArray.GetValue(2);
        html += "</td></tr>";

        if (string.IsNullOrEmpty(dt.Rows[i].ItemArray.GetValue(3).ToString()))
        {
            html += "<tr><td colspan='2' style='height:10px;'></td></tr></table></div>";
        }
        else
        {
            html += "<tr><td class='contactCat'>Other</td><td class='tdHeadingPadding'>";
            html += dt.Rows[i].ItemArray.GetValue(3);
            html += "</td></tr><tr><td colspan='2' style='height:10px;'></td></tr></table></div>";
        }

    }

    ResultsDiv.InnerHtml += html;

}
}

您可以使用ASP.NETWeb应用程序或ASP.NETWeb表单应用程序来执行此操作。如果它应该处理非常复杂的逻辑&期望值很高,并且需要运行更长的时间,那么.NETMVC应用程序将是一个不错的选择。它需要进行大量的工作,但非常灵活。 这里是一个好教程的链接


如果您刚刚开始使用ASP.NET,我建议您在第4页查看ASP.NETMVC4。在那里你可以找到极好的Pluralsight视频课程,我强烈建议你观看。同意其他MVC,但如果你想使用Web表单,一个很好的当前数据控件是ASP.NET Repeater。检查这个问题可能更适合CodeReview SE。因为你是C新手,而且无论如何都在学习,我同意你最好把精力花在学习最新的框架上。开始使用MVC4,其实很容易理解。我花了一整天的时间看了一些MVC4的入门教程,看起来很有条理,虽然有很多内容,但这个概念很容易理解。谢谢你给我指出了一个好的方向。