http://www.aspsnippets.com/Blue/Articles/Display-Images-from-SQL-Server-Database-using-ASP.Net.aspx
i want this solution using relative value through textbox. when user put image id in textbox and click to retrive button related image will shown in iamgebox.
please provide me solution.
Thanks and regards
venkatesh kumar.
You need to change the following line
cmd.Parameters.Add("@id", SqlDbType.Int).Value = Convert.ToInt32 (Request.QueryString["ImageID"]);
to
cmd.Parameters.Add("@id", SqlDbType.Int).Value = Convert.ToInt32 (TextBox1.Text);
© COPYRIGHT 2025 ASPSnippets.com ALL RIGHTS RESERVED.