Click here to Skip to main content
15,915,848 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: using dropdownlist Pin
InsDev29-Oct-07 1:22
InsDev29-Oct-07 1:22 
AnswerRe: using dropdownlist Pin
soni uma29-Oct-07 1:09
soni uma29-Oct-07 1:09 
GeneralRe: using dropdownlist Pin
Rinki Mukheraji29-Oct-07 1:12
Rinki Mukheraji29-Oct-07 1:12 
GeneralRe: using dropdownlist Pin
soni uma29-Oct-07 1:26
soni uma29-Oct-07 1:26 
GeneralRe: using dropdownlist Pin
Vipin.d29-Oct-07 2:57
Vipin.d29-Oct-07 2:57 
GeneralRe: using dropdownlist Pin
soni uma29-Oct-07 3:10
soni uma29-Oct-07 3:10 
GeneralRe: using dropdownlist Pin
Vipin.d29-Oct-07 3:21
Vipin.d29-Oct-07 3:21 
GeneralRe: using dropdownlist Pin
Rinki Mukheraji29-Oct-07 3:37
Rinki Mukheraji29-Oct-07 3:37 
QuestionGridView Insert with javascript Pin
sofiz.p29-Oct-07 0:54
sofiz.p29-Oct-07 0:54 
AnswerRe: GridView Insert with javascript Pin
N a v a n e e t h29-Oct-07 0:59
N a v a n e e t h29-Oct-07 0:59 
QuestionRe: GridView Insert with javascript Pin
sofiz.p29-Oct-07 20:19
sofiz.p29-Oct-07 20:19 
AnswerRe: GridView Insert with javascript Pin
Braulio Dez29-Oct-07 4:08
Braulio Dez29-Oct-07 4:08 
QuestionRe: GridView Insert with javascript Pin
sofiz.p29-Oct-07 20:17
sofiz.p29-Oct-07 20:17 
QuestionUpload Web Application on Server Pin
ramakant_135229-Oct-07 0:42
ramakant_135229-Oct-07 0:42 
AnswerRe: Upload Web Application on Server Pin
Tarun Dudhatra29-Oct-07 0:52
Tarun Dudhatra29-Oct-07 0:52 
GeneralRe: Upload Web Application on Server Pin
ramakant_135229-Oct-07 1:09
ramakant_135229-Oct-07 1:09 
GeneralRe: Upload Web Application on Server Pin
Tarun Dudhatra29-Oct-07 1:21
Tarun Dudhatra29-Oct-07 1:21 
AnswerRe: Upload Web Application on Server Pin
Braulio Dez29-Oct-07 4:16
Braulio Dez29-Oct-07 4:16 
QuestionStoring & retrieving swf file from sql server Pin
Tarun Dudhatra29-Oct-07 0:30
Tarun Dudhatra29-Oct-07 0:30 
AnswerRe: Storing & retrieving swf file from sql server Pin
N a v a n e e t h29-Oct-07 0:39
N a v a n e e t h29-Oct-07 0:39 
GeneralRe: Storing & retrieving swf file from sql server Pin
Tarun Dudhatra29-Oct-07 0:44
Tarun Dudhatra29-Oct-07 0:44 
GeneralRe: Storing & retrieving swf file from sql server Pin
N a v a n e e t h29-Oct-07 0:51
N a v a n e e t h29-Oct-07 0:51 
GeneralRe: Storing & retrieving swf file from sql server Pin
Tarun Dudhatra29-Oct-07 0:58
Tarun Dudhatra29-Oct-07 0:58 
private System.Drawing.Image RetrieveImage(string id,string tname)
{
System.Drawing.Image image = null;
strcon = System.Configuration.ConfigurationManager.AppSettings["ConnectionString"];
Con = new SqlConnection(strcon);
Con.Open();
Cmd = new SqlCommand("SELECT imgimage FROM latework where imgid='" + id + "'", Con);
Cmd.CommandType = CommandType.Text;
SqlDataReader Dr = Cmd.ExecuteReader();

if (Dr.Read())
{
byte[] imageData = (byte[])Dr[0];
MemoryStream memStream = new MemoryStream(imageData);
image = System.Drawing.Image.FromStream(memStream);
}
return image;
}

This is my code to retrive an Image ok now can u do something?
Thanks

GeneralRe: Storing & retrieving swf file from sql server Pin
N a v a n e e t h29-Oct-07 1:02
N a v a n e e t h29-Oct-07 1:02 
GeneralRe: Storing & retrieving swf file from sql server Pin
Tarun Dudhatra29-Oct-07 1:11
Tarun Dudhatra29-Oct-07 1:11 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.