Dim dr As DataRow = DataTables("今日金价201609").SQLFind("对账品名='" & e.PostValues("对账品名") & "'And 店名='" & e.PostValues("店名") & "'")
Dim nms() As String = {"今日金价价格","今日金价价格优恵","今日金价折扣","今日金价金价"} '""
If dr IsNot Nothing Then
For Each nm As String In nms
If e.PostValues.ContainsKey(nm) Then
dr(nm)= e.PostValues(nm)
End If
Next
End If
dr.Save()