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

ASP.NET

 
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 
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 
Hi Guffa,
Thanks for ur suggestion. I am using it on web application. I have written an HttpHander for the same, but it is not working on Firefox.Can u give me a quick solution.

Here is my handler.
public class FlyImage : IHttpHandler
{

public void ProcessRequest(HttpContext context)
{
System.Net.HttpWebRequest request = System.Net.WebRequest.Create("http://www.codeproject.com/SiteRes/CP/Img/Std/logo225x90.gif") as System.Net.HttpWebRequest;
context.Response.Clear();
context.Response.Expires = -1;
context.Response.ContentType = "image/gif";
context.Response.Cache.SetCacheability(HttpCacheability.NoCache);
byte[] img = null;
System.Net.HttpWebResponse response = request.GetResponse() as System.Net.HttpWebResponse;
System.IO.Stream stream = response.GetResponseStream();
System.IO.BinaryReader binaryReader = new System.IO.BinaryReader(stream);
img = binaryReader.ReadBytes((int)response.ContentLength);
context.Response.OutputStream.Write(img, 0, img.Length);
}

public bool IsReusable
{
get
{
return false;
}
}

}

DK
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 
QuestionRe: Datagrid or gridview whith insert button Pin
amina8922-Sep-08 3:31
amina8922-Sep-08 3:31 
QuestionRe: Datagrid or gridview whith insert button Pin
amina8924-Sep-08 2:34
amina8924-Sep-08 2:34 

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.