Click here to Skip to main content
15,902,198 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: How Can I Get path? Pin
N a v a n e e t h12-Nov-07 21:41
N a v a n e e t h12-Nov-07 21:41 
QuestionGoogle like Web Services Pin
wEb GuRu...12-Nov-07 20:01
wEb GuRu...12-Nov-07 20:01 
AnswerRe: Google like Web Services Pin
N a v a n e e t h12-Nov-07 20:12
N a v a n e e t h12-Nov-07 20:12 
QuestionGoogle like Web Services(URGENT) Pin
wEb GuRu...12-Nov-07 20:47
wEb GuRu...12-Nov-07 20:47 
AnswerRe: Google like Web Services(URGENT) Pin
N a v a n e e t h12-Nov-07 21:33
N a v a n e e t h12-Nov-07 21:33 
Questionautocomplete textbox Pin
kirthikirthi12-Nov-07 19:56
kirthikirthi12-Nov-07 19:56 
AnswerRe: autocomplete textbox Pin
wEb GuRu...12-Nov-07 20:06
wEb GuRu...12-Nov-07 20:06 
Questionimage in image contol Pin
Sonia Gupta12-Nov-07 19:56
Sonia Gupta12-Nov-07 19:56 
i was trying to display the image in the image control.
following is the code i am uisng to display in the web page.
Problem is how should i display it in the image control
int length = FileUpload1.PostedFile.ContentLength;<br />
        byte[] pic = new byte[length];<br />
        FileUpload1.PostedFile.InputStream.Read(pic, 0, length);<br />
        SqlConnection con = new SqlConnection("server=a;database=a;user id=sa;pwd=sa;");<br />
        con.Open();<br />
        SqlCommand cmd = new SqlCommand();<br />
        cmd.CommandText = "spa";<br />
        cmd.CommandType = CommandType.StoredProcedure;<br />
        cmd.Parameters.AddWithValue("@a", pic);<br />
        cmd.Connection = con;<br />
        cmd.ExecuteNonQuery();<br />
        cmd = new SqlCommand("select * from a", con);<br />
        byte[] pic1 = (byte[])cmd.ExecuteScalar();<br />
        MemoryStream ms = new MemoryStream();<br />
        ms.Write(pic1, 0, pic1.Length);<br />
        Bitmap bmp = new Bitmap(pic1);<br />
        bmp.Save(Response.OutputStream, ImageFormat.Gif); 


Soniagupta1@yahoo.co.in
Yahoo Messenger Id = soniagupta1
AnswerRe: image in image contol Pin
N a v a n e e t h12-Nov-07 20:10
N a v a n e e t h12-Nov-07 20:10 
GeneralRe: image in image contol Pin
Sonia Gupta12-Nov-07 20:22
Sonia Gupta12-Nov-07 20:22 
GeneralRe: image in image contol Pin
N a v a n e e t h12-Nov-07 21:35
N a v a n e e t h12-Nov-07 21:35 
AnswerRe: image in image contol Pin
InsDev12-Nov-07 20:21
InsDev12-Nov-07 20:21 
GeneralRe: image in image contol Pin
Sonia Gupta12-Nov-07 20:40
Sonia Gupta12-Nov-07 20:40 
GeneralRe: image in image contol Pin
N a v a n e e t h12-Nov-07 21:35
N a v a n e e t h12-Nov-07 21:35 
AnswerRe: Error to bind an array into a grid Pin
Michael Sync12-Nov-07 20:13
Michael Sync12-Nov-07 20:13 
QuestionBind Based on Id's..., [modified] Pin
Member 387988112-Nov-07 19:13
Member 387988112-Nov-07 19:13 
AnswerRe: Bind Based on Id's..., Pin
Prateek G12-Nov-07 20:49
Prateek G12-Nov-07 20:49 
QuestionUsing Roles in Web.Config file Pin
nagendrathecoder12-Nov-07 19:11
nagendrathecoder12-Nov-07 19:11 
AnswerRe: Using Roles in Web.Config file Pin
Michael Sync12-Nov-07 20:11
Michael Sync12-Nov-07 20:11 
Questioncarousel control Pin
Prakash_Mishra12-Nov-07 18:50
Prakash_Mishra12-Nov-07 18:50 
AnswerRe: carousel control Pin
Michael Sync12-Nov-07 20:06
Michael Sync12-Nov-07 20:06 
QuestionPaging in Placeholder Pin
.NET- India 12-Nov-07 18:18
.NET- India 12-Nov-07 18:18 
AnswerRe: Paging in Placeholder Pin
N a v a n e e t h12-Nov-07 18:25
N a v a n e e t h12-Nov-07 18:25 
QuestionPay schedule Pin
gunaarun12-Nov-07 18:15
gunaarun12-Nov-07 18:15 
AnswerRe: Pay schedule Pin
Michael Sync12-Nov-07 18:41
Michael Sync12-Nov-07 18:41 

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.