我想顯示在一個div並根據該訊息的答覆後,並連續要顯示另一個帖子和回覆... 我做了這麼多但這並不表明,所需的輸出如何使用asp.net進行評論回覆系統。?
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Data.SqlClient;
public partial class Default3 : System.Web.UI.Page
{
int i = 0;
SqlConnection con = new SqlConnection("server=LOD-PC;uid=sa;pwd=1234;database=db2");
protected void Page_Load(object sender, EventArgs e)
{
con.Open();
SqlCommand cmd = new SqlCommand("select * from t3 ORDER by id DESC", con);
SqlDataReader dr = cmd.ExecuteReader();
while (dr.Read())
{
i++;
string name = dr["name"].ToString();
string image1 = dr["img"].ToString();
string image2 = image1.Substring(2).ToString();
string id = dr["id"].ToString();
string status = dr["status"].ToString();
string buttonid = i.ToString();
Response.Write("<div id='myDiv' class='myDivClass'> <img src='" + image2 + "' style='width:50px; height:50px; float:left; margin-right:6px;' /> <br/> <br/> <span class='name'> <input id='texta' class='texta' type='text' value=" + name.ToString() + " /> <span/> <span class='id'> <input id='textb' class='textb' type='text' value=" + id.ToString() + " /> <span/> <div id='g'><br/><br/><br/><span class='status'> " + status + " </span> <span class='combutton'> <input id='"+buttonid+"' class='button' type='button' value='Comment'/> </span> </div> </div>");
}
con.Close();
}
}
**還有當我使用Response.Write(「任何asp標籤」); **沒有在頁面中顯示 –
如果你不讓我們猜測它會做什麼*顯示,輸出有什麼問題。 –
作爲一般規則,**不要在'Page' **中使用'Response.Write()'。改用網頁控制。 – jrummell