|
|
|
อยากให้แสดงรูปเรียงตามลำดับที่ 1,2,3,4 ตอนนี้เรียงมั่วคะ รีเฟรชทีก็เปลี่ยนที่อยู่ไม่อยู่ที่เดิมคะ |
|
|
|
|
|
|
|
อยากให้แสดงรูปเรียงตามลำดับที่ 1,2,3,4 ตอนนี้เรียงมั่วคะ รีเฟรชทีก็เปลี่ยนที่อยู่ไม่อยู่ที่เดิมคะ
ตัว aa.PicType จะเปนตัวบอกว่าเป็นรูปลำดับที่เท่าไหร่คะ
Code (VB.NET)
Dim cmd As New SqlCommand("select bb.GoodCode, aa.PicType, aa.GoodPathPic " & _
"from EMGoodPic aa ," & _
"EMGood bb " & _
"where aa.GoodID = bb.GoodID and bb.GoodCode = @pi", condb)
cmd.Parameters.AddWithValue("@pi", _GoodCode)
Dim filepath As String
filepath = ("J:/")
Using rd = cmd.ExecuteReader()
While rd.Read()
Dim txt = filepath & rd("GoodPathPic")
lblImg.Text &= "<td width='10'><a href='" & txt & "' target='_blank' ><img src='" & txt & "' width='200' height='200'></a> </td>"
End While
End Using
Tag : .NET, Ms SQL Server 2008, VB.NET
|
|
|
|
|
|
Date :
2011-08-30 13:37:03 |
By :
chokul |
View :
1151 |
Reply :
1 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ใช้ Order by
Type เป็น int มันจะเรียง 1, 2, 3.......10, 11, 12
Type เป็น char มันจะเรียง 1, 10, 11, 12, 2, 3..........
|
|
|
|
|
Date :
2011-08-30 15:24:21 |
By :
@teenee |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|