我有以下的文本框和按鈕:分配文本框輸入到可變
<asp:TextBox ID="input" runat="server" Height="10px" Width="60px">123456</asp:TextBox>
<asp:Button ID="Button1" runat="server" OnClick="ViewButton_Click" Text="Button" />
文本框爲「123456」的默認值。點擊鈕則應觸發以下:
public byte[] GetImageData(int ID)
{
....
SqlCommand command = new SqlCommand("select FileImage from TestServ.dbo.Tickets WHERE (FileType = 'PDF' AND ID = 111111)", connection);
....
}
目前,ID被手動設置爲「111111」,這將被用於抓住從對應於輸入的ID的服務器的PDF。然而,我遇到麻煩的是修改代碼,以便抓取我輸入到「輸入」文本框(當前爲123456)的ID,然後將其設置爲上述代碼中的ID而不是「111111」。
我認爲http://stackoverflow.com/questions/2377506/pass-array-parameter-in-sqlcommand是一樣的。 – nycdan