Click here to Skip to main content
15,891,431 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionThe connection name 'MyConnection' was not found in the applications configuration or the connection string is empty. Pin
enthusiastic47722-Sep-08 3:06
enthusiastic47722-Sep-08 3:06 
Questionasp.net application in mono project Pin
UD(IA)22-Sep-08 3:03
UD(IA)22-Sep-08 3:03 
AnswerRe: asp.net application in mono project Pin
Caio Kinzel Filho22-Sep-08 3:56
Caio Kinzel Filho22-Sep-08 3:56 
GeneralRe: asp.net application in mono project Pin
Krazy Programmer22-Sep-08 19:36
Krazy Programmer22-Sep-08 19:36 
Questionrefresh gridview on parent form after modal child form closed [modified] Pin
johland22-Sep-08 2:36
johland22-Sep-08 2:36 
AnswerRe: refresh gridview on parent form after modal child form closed Pin
ToddHileHoffer22-Sep-08 5:03
ToddHileHoffer22-Sep-08 5:03 
AnswerRe: refresh gridview on parent form after modal child form closed Pin
kenexcelon22-Sep-08 11:56
kenexcelon22-Sep-08 11:56 
Questionread image from the bitmap Pin
dews turner22-Sep-08 1:53
dews turner22-Sep-08 1:53 
Hi All,

I need to read image from the bitmap. I don't want to save it on to the server, but read directly from object in order to display it in image object . My code is:

HttpWebResponse response = request.GetResponse() as HttpWebResponse;
Stream stream = response.GetResponseStream();
MemoryStream ms = new MemoryStream();
BinaryWriter bw = new BinaryWriter(ms);
BinaryReader br = new BinaryReader(stream);
bw.Write(br.ReadBytes((int)response.ContentLength));
ms.Position = 0;
Bitmap fred = Bitmap.FromStream(ms) as Bitmap;

Now Please give me a solution to read the image from this bitmap.

D'kng
AnswerRe: read image from the bitmap Pin
Guffa22-Sep-08 6:10
Guffa22-Sep-08 6:10 
GeneralRe: read image from the bitmap Pin
dews turner24-Sep-08 4:43
dews turner24-Sep-08 4:43 
GeneralRe: read image from the bitmap Pin
Guffa24-Sep-08 13:59
Guffa24-Sep-08 13:59 
GeneralRe: read image from the bitmap Pin
dews turner25-Sep-08 2:26
dews turner25-Sep-08 2:26 
Questiontab control in asp.net ????? Pin
koolprasad200322-Sep-08 1:44
professionalkoolprasad200322-Sep-08 1:44 
AnswerRe: tab control in asp.net ????? Pin
Abhishek Sur22-Sep-08 1:48
professionalAbhishek Sur22-Sep-08 1:48 
QuestionDeployment Issue after Migrating from ASP.Net1.1 to ASP.Net 2.0 [modified] Pin
pashitech22-Sep-08 1:25
pashitech22-Sep-08 1:25 
AnswerRe: Deployment Issue after Migrating from ASP.Net1.1 to ASP.Net 2.0 Pin
vimal_yet23-Sep-08 21:18
vimal_yet23-Sep-08 21:18 
Questionhow to fetch the data from the database for use in client side Pin
jaya8622-Sep-08 1:25
jaya8622-Sep-08 1:25 
AnswerRe: how to fetch the data from the database for use in client side Pin
Caio Kinzel Filho22-Sep-08 4:10
Caio Kinzel Filho22-Sep-08 4:10 
QuestionHost and windows account Pin
mehrdadc4822-Sep-08 0:07
mehrdadc4822-Sep-08 0:07 
AnswerRe: Host and windows account Pin
Ashfield22-Sep-08 4:10
Ashfield22-Sep-08 4:10 
QuestionEncryption Pin
mehrdadc4822-Sep-08 0:03
mehrdadc4822-Sep-08 0:03 
AnswerRe: Encryption Pin
Paddy Boyd22-Sep-08 0:36
Paddy Boyd22-Sep-08 0:36 
QuestionDatagrid or gridview whith insert button Pin
amina8921-Sep-08 23:58
amina8921-Sep-08 23:58 
AnswerRe: Datagrid or gridview whith insert button Pin
Prashant B. Lavate22-Sep-08 1:25
Prashant B. Lavate22-Sep-08 1:25 
AnswerRe: Datagrid or gridview whith insert button Pin
amina8922-Sep-08 1:43
amina8922-Sep-08 1:43 

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.