Click here to Skip to main content
15,914,225 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionSplitting the contents of a page on 2 printed pages Pin
naglbitur14-Apr-06 4:22
naglbitur14-Apr-06 4:22 
AnswerRe: Splitting the contents of a page on 2 printed pages Pin
Mike Ellison14-Apr-06 6:12
Mike Ellison14-Apr-06 6:12 
AnswerRe: How to access a class function from Global.asax file??? Pin
Mike Ellison14-Apr-06 6:15
Mike Ellison14-Apr-06 6:15 
GeneralRe: How to access a class function from Global.asax file??? Pin
JimFeng14-Apr-06 6:20
JimFeng14-Apr-06 6:20 
GeneralRe: How to access a class function from Global.asax file??? Pin
Mike Ellison14-Apr-06 6:29
Mike Ellison14-Apr-06 6:29 
GeneralRe: How to access a class function from Global.asax file??? Pin
JimFeng14-Apr-06 8:01
JimFeng14-Apr-06 8:01 
Questionupload images on server Pin
Jmshastri14-Apr-06 3:52
Jmshastri14-Apr-06 3:52 
AnswerRe: upload images on server Pin
Mike Ellison14-Apr-06 6:28
Mike Ellison14-Apr-06 6:28 
This is a good one to Google. There has been a lot written about displaying images in a database on an ASP.NET form - typically the solution will either involve having a dedicated .aspx page that returns the image as a binary stream, or having a custom ASP.NET handler (.ashx) that will retrieve and stream out images. The consuming page would then have something like
<img src='myImagePage.aspx?imageId=42' />
to define the image.

Creating a dedicated .aspx page for this is probably easier - here's an example:
http://www.superdotnet.com/Article.aspx?ArticleID=83[^]

Creating an HTTP handler requires a little more understading, but could pay off for you if you're interested in learning about it. Here is a link that describes HTTP handlers and a second that specifically deals with image display:
http://www.15seconds.com/issue/020417.htm[^]
http://www.c-sharpcorner.com/Code/2003/June/HTTPHandlersForImages.asp[^]
QuestionAdd items to datalist Pin
munklefish14-Apr-06 3:30
munklefish14-Apr-06 3:30 
AnswerRe: Add items to datalist Pin
Mike Ellison14-Apr-06 3:32
Mike Ellison14-Apr-06 3:32 
GeneralRe: Add items to datalist Pin
munklefish14-Apr-06 3:40
munklefish14-Apr-06 3:40 
GeneralRe: Add items to datalist Pin
Mike Ellison14-Apr-06 5:54
Mike Ellison14-Apr-06 5:54 
QuestionExecute Code From SQL DB Pin
vip_3bdllah14-Apr-06 3:05
vip_3bdllah14-Apr-06 3:05 
AnswerRe: Execute Code From SQL DB Pin
Guffa14-Apr-06 3:28
Guffa14-Apr-06 3:28 
GeneralRe: Execute Code From SQL DB Pin
vip_3bdllah14-Apr-06 13:21
vip_3bdllah14-Apr-06 13:21 
QuestionCrystal Reports Pin
mcgann14-Apr-06 2:42
mcgann14-Apr-06 2:42 
AnswerRe: Crystal Reports Pin
jiturinku14-Apr-06 20:47
jiturinku14-Apr-06 20:47 
QuestionHow to make my check box click event work at client side Pin
Uma Kameswari14-Apr-06 1:57
Uma Kameswari14-Apr-06 1:57 
AnswerRe: How to make my check box click event work at client side Pin
jitendra gupta14-Apr-06 2:17
jitendra gupta14-Apr-06 2:17 
GeneralRe: How to make my check box click event work at client side Pin
Uma Kameswari14-Apr-06 2:26
Uma Kameswari14-Apr-06 2:26 
GeneralRe: How to make my check box click event work at client side Pin
Uma Kameswari16-Apr-06 23:28
Uma Kameswari16-Apr-06 23:28 
QuestionSaving an image to the hard drive. Pin
naglbitur14-Apr-06 1:49
naglbitur14-Apr-06 1:49 
AnswerRe: Saving an image to the hard drive. Pin
Mike Ellison14-Apr-06 2:37
Mike Ellison14-Apr-06 2:37 
GeneralRe: Saving an image to the hard drive. Pin
naglbitur14-Apr-06 2:54
naglbitur14-Apr-06 2:54 
GeneralRe: Saving an image to the hard drive. Pin
Mike Ellison14-Apr-06 2:59
Mike Ellison14-Apr-06 2:59 

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.