Click here to Skip to main content
15,892,005 members
Home / Discussions / ASP.NET
   

ASP.NET

 
Questionweb Part application does not running Pin
nikhil123423-Feb-07 18:22
nikhil123423-Feb-07 18:22 
AnswerRe: web Part application does not running Pin
The Tigerman24-Feb-07 12:42
The Tigerman24-Feb-07 12:42 
AnswerRe: web Part application does not running Pin
shirish7825-Feb-07 23:38
shirish7825-Feb-07 23:38 
Questionhow to add class in asp.net code Pin
ramyasangeet23-Feb-07 18:01
ramyasangeet23-Feb-07 18:01 
AnswerRe: how to add class in asp.net code Pin
Michael Sync23-Feb-07 21:27
Michael Sync23-Feb-07 21:27 
AnswerRe: how to add class in asp.net code Pin
Christian Graus23-Feb-07 23:13
protectorChristian Graus23-Feb-07 23:13 
QuestionShow Image Pin
AnhTin23-Feb-07 16:50
AnhTin23-Feb-07 16:50 
AnswerRe: Show Image Pin
The Tigerman24-Feb-07 12:34
The Tigerman24-Feb-07 12:34 
Problem is the format of PNG is not compatible with the Response.OutputStream method directly, you need to store the image in a memorystream at then send that to the browser...

System.IO.MemoryStream memStream;
byte[] bytBuffer;
Response.Clear();
Response.ContentType = "image/png";
memStream = new System.IO.MemoryStream();
bp.Save(memStream, System.Drawing.Imaging.ImageFormat.Png);
bytBuffer = memStream.ToArray();
Response.OutputStream.Write(bytBuffer, 0, bytBuffer.Length);
Response.End();

My C++ skills not good, this is a translation of the VB.NET code that I use..

Big Grin | :-D
QuestionHow to display the last logged in user from the login page Pin
Eyungwah23-Feb-07 12:19
Eyungwah23-Feb-07 12:19 
AnswerRe: How to display the last logged in user from the login page Pin
FireOnMoon23-Feb-07 18:26
FireOnMoon23-Feb-07 18:26 
AnswerRe: How to display the last logged in user from the login page Pin
The Tigerman24-Feb-07 12:37
The Tigerman24-Feb-07 12:37 
QuestionEmail Identity Pin
rock05623-Feb-07 10:26
rock05623-Feb-07 10:26 
AnswerRe: Email Identity Pin
The Tigerman24-Feb-07 12:46
The Tigerman24-Feb-07 12:46 
GeneralRe: Email Identity Pin
rock05626-Feb-07 3:21
rock05626-Feb-07 3:21 
Questionhttp/1.0 425 http Error Pin
LCI23-Feb-07 9:55
LCI23-Feb-07 9:55 
Questionasp.net 2.0 Unable to Start debugging on the web server Pin
aransiola23-Feb-07 7:21
aransiola23-Feb-07 7:21 
AnswerRe: asp.net 2.0 Unable to Start debugging on the web server Pin
Hesham Amin23-Feb-07 7:53
Hesham Amin23-Feb-07 7:53 
AnswerRe: asp.net 2.0 Unable to Start debugging on the web server Pin
szukuro24-Feb-07 9:11
szukuro24-Feb-07 9:11 
GeneralRe: asp.net 2.0 Unable to Start debugging on the web server Pin
aransiola26-Feb-07 23:57
aransiola26-Feb-07 23:57 
QuestionHelp: RaisePostBackEvent does not get call Pin
Rookie23-Feb-07 7:16
Rookie23-Feb-07 7:16 
Questionajax popup tricking Pin
netJP12L23-Feb-07 6:41
netJP12L23-Feb-07 6:41 
AnswerRe: ajax popup tricking Pin
netJP12L23-Feb-07 8:48
netJP12L23-Feb-07 8:48 
Questionajax popup tricking Pin
netJP12L23-Feb-07 6:33
netJP12L23-Feb-07 6:33 
Questionadd hyperlink dynamically using a gridview Pin
lavell23-Feb-07 6:22
lavell23-Feb-07 6:22 
AnswerRe: add hyperlink dynamically using a gridview Pin
kubben23-Feb-07 8:31
kubben23-Feb-07 8:31 

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.