我想要發生的是顯示上傳的文件在網格視圖(工作正常),併發送相同的文件到SQL數據庫(工作正常)。文件上傳發送到數據庫,並立即顯示到gridview
我的主要任務是獲取當前登錄人員下的所有上傳文件,例如customerA登錄,僅顯示客戶A的上傳文件。
具有在我的數據庫,我現在實現一個select語句。 (這裏是我的問題開始的地方),這裏是頁面加載代碼:
public static string cs = "Server=PAULO;Database=ShoppingCartDB;Integrated Security=true";
protected void Page_Load(object sender, EventArgs e)
{
if (Session["New"] != null)
{
if (!IsPostBack)
{
SqlConnection con = new SqlConnection(cs);
con.Open();
string sql = "SELECT * FROM DepositSlip Where Username = '" + Session["New"] + "'";
SqlDataAdapter da = new SqlDataAdapter(sql, con);
DataTable dt = new DataTable();
da.Fill(dt);
Label2.Text += Session["New"].ToString();
linkLogout.Visible = true;
linkOrderHistory.Visible = true;
Label2.Visible = true;
linkViewProfile.Visible = true;
string[] filePaths = Directory.GetFiles(Server.MapPath("~/Uploads/"));
List<ListItem> files = new List<ListItem>();
foreach (string filePath in filePaths)
{
files.Add(new ListItem(Path.GetFileName(filePath), filePath));
}
GridView1.DataSource= files;
GridView1.DataBind();
}
}
}
據我所知,它裝載了從目錄路徑的文件,但我不知道是如何實現顯示上傳的文件從基於會話用戶的數據庫中獲取。
的問題是不管它顯示了誰登錄了相同的數據。
對此有什麼技巧?