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

ASP.NET

 
QuestionStop Running Script Error Pin
ashu200124-Oct-12 23:12
ashu200124-Oct-12 23:12 
AnswerRe: Stop Running Script Error Pin
Vasudevan Deepak Kumar26-Oct-12 3:25
Vasudevan Deepak Kumar26-Oct-12 3:25 
QuestionTips on asp.net data updates and third party framework Pin
jumbojs23-Oct-12 19:20
jumbojs23-Oct-12 19:20 
AnswerRe: Tips on asp.net data updates and third party framework Pin
David Mujica24-Oct-12 3:22
David Mujica24-Oct-12 3:22 
Questionin Asp.net How to add templatefield and itemtemplate field dynamically in grid view please tell me...... Pin
ShreeGaneshPatil198822-Oct-12 20:59
ShreeGaneshPatil198822-Oct-12 20:59 
AnswerRe: in Asp.net How to add templatefield and itemtemplate field dynamically in grid view please tell me...... Pin
Sandeep Mewara23-Oct-12 4:13
mveSandeep Mewara23-Oct-12 4:13 
QuestionHow to pass binary image to image handler to display it in DataList? Pin
Chesnokov Yuriy22-Oct-12 6:08
professionalChesnokov Yuriy22-Oct-12 6:08 
AnswerRe: How to pass binary image to image handler to display it in DataList? Pin
Richard Deeming22-Oct-12 6:46
mveRichard Deeming22-Oct-12 6:46 
Depending on how big your images are, and which browsers you need to support, you might be able to use a data URI[^].
(If you're using IE8, you're limited to 32Kb; earlier versions of IE aren't supported at all.)

C#
myImageImage.ImageUrl = "data:image/jpeg;base64," + Convert.ToBase64String(myImage.Jpeg);


If you need to support older versions of IE, you'll need to pass a query-string to your handler. If the image is more than 32Kb, it'll be too large for a query-string, so you'll need to pass some kind of ID to allow the handler to retrieve the image.



"These people looked deep within my soul and assigned me a number based on the order in which I joined."
- Homer


GeneralRe: How to pass binary image to image handler to display it in DataList? Pin
Chesnokov Yuriy22-Oct-12 7:19
professionalChesnokov Yuriy22-Oct-12 7:19 
QuestionInsert,delete,update in datagridview in asp.net with webservice Pin
Member 1051082222-Oct-12 1:28
professionalMember 1051082222-Oct-12 1:28 
AnswerRe: Insert,delete,update in datagridview in asp.net with webservice Pin
vinay_sinha22-Oct-12 2:04
vinay_sinha22-Oct-12 2:04 
QuestionSessions Pin
Satbir422-Oct-12 1:01
Satbir422-Oct-12 1:01 
AnswerRe: Sessions Pin
vinay_sinha22-Oct-12 2:02
vinay_sinha22-Oct-12 2:02 
AnswerRe: Sessions Pin
Himanshu Yadav24-Oct-12 22:07
Himanshu Yadav24-Oct-12 22:07 
AnswerRe: Sessions Pin
Think On26-Oct-12 1:49
Think On26-Oct-12 1:49 
AnswerRe: Sessions Pin
Vasudevan Deepak Kumar26-Oct-12 3:26
Vasudevan Deepak Kumar26-Oct-12 3:26 
AnswerRe: Sessions Pin
Radhika Vyas28-Oct-12 23:01
Radhika Vyas28-Oct-12 23:01 
Questionhow to get onfocus OR onenter Textbox asp.net Pin
jojoba201121-Oct-12 23:19
jojoba201121-Oct-12 23:19 
SuggestionRe: how to get onfocus OR onenter Textbox asp.net Pin
Richard MacCutchan21-Oct-12 23:37
mveRichard MacCutchan21-Oct-12 23:37 
AnswerRe: how to get onfocus OR onenter Textbox asp.net Pin
mayur111221-Oct-12 23:52
mayur111221-Oct-12 23:52 
Questionhow to get onfocus OR onenter Textbox asp.net Pin
jojoba201121-Oct-12 23:18
jojoba201121-Oct-12 23:18 
AnswerRe: how to get onfocus OR onenter Textbox asp.net Pin
Sandeep Mewara23-Oct-12 4:10
mveSandeep Mewara23-Oct-12 4:10 
AnswerRe: how to get onfocus OR onenter Textbox asp.net Pin
Mayank_Gupta_24-Oct-12 22:32
professionalMayank_Gupta_24-Oct-12 22:32 
AnswerRe: how to get onfocus OR onenter Textbox asp.net Pin
Amir Jalilifard4-Nov-12 3:54
professionalAmir Jalilifard4-Nov-12 3:54 
QuestionPop up Registration form - protect against bots Pin
StratCat201221-Oct-12 12:44
StratCat201221-Oct-12 12:44 

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.