Advertisement
Advertisement
| 06.18.2008 at 08:49AM PDT, ID: 23495729 |
|
[x]
Attachment Details
|
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: |
does not work
ImportRecommend.Parameters.Add("@BatchID", SqlDbType.BigInt).Value = Request.QueryString("id")
work
ImportRecommend.Parameters.Add("@BatchID", SqlDbType.BigInt).Value = "41096"
but this have to happen dynamically
my url
Items.aspx?id=41096
|