PC Review


Reply
Thread Tools Rate Thread

2nd post - 1st 8/2/05 (no reply). Any help here?

 
 
=?Utf-8?B?RGF2aWRT?=
Guest
Posts: n/a
 
      4th Aug 2005
I have HTML web page with <asp:Image id=img_L runat=server ImageAlign=Top
Visible=True Width=y Height=x></asp:Image>. For some images, less than 128K
I can view image. Other image files > 128K, image is not viewable - comes up
with X in picture box. Is there size restriction. How can I remove this -
or how can I show images > 128K in web page.

NOTE: x & y in asp:Image spec are distinct values - say 128 x 128 or 64 x 64
image sizes
 
Reply With Quote
 
 
 
 
Curt_C [MVP]
Guest
Posts: n/a
 
      4th Aug 2005
DavidS wrote:
> I have HTML web page with <asp:Image id=img_L runat=server ImageAlign=Top
> Visible=True Width=y Height=x></asp:Image>. For some images, less than 128K
> I can view image. Other image files > 128K, image is not viewable - comes up
> with X in picture box. Is there size restriction. How can I remove this -
> or how can I show images > 128K in web page.
>
> NOTE: x & y in asp:Image spec are distinct values - say 128 x 128 or 64 x 64
> image sizes


try to use a simple <img src=...> tag for that image once, to ensure its
not the image.

--
Curt Christianson
site: http://www.darkfalz.com
blog: http://blog.darkfalz.com
 
Reply With Quote
 
=?Utf-8?B?RGF2aWRT?=
Guest
Posts: n/a
 
      4th Aug 2005
Not sure I follow you - not sure what <img src=> will do for me. I'm
basically using <asp:Image ...> </asp:Image> to dynamically control the image
viewed in the web page. The images exists - it appears to be size issue -
but I need to confirm. I have many images that are viewed - others whose
size is > 128K just are viewable with red x. If I review the image file
using Windows Explorer (image file > 128K - it's viewable - but for some
reason, the <asp:Image> control will not properly preview these images.

Any other suggestion or has anyone encountered this problem

"Curt_C [MVP]" wrote:

> DavidS wrote:
> > I have HTML web page with <asp:Image id=img_L runat=server ImageAlign=Top
> > Visible=True Width=y Height=x></asp:Image>. For some images, less than 128K
> > I can view image. Other image files > 128K, image is not viewable - comes up
> > with X in picture box. Is there size restriction. How can I remove this -
> > or how can I show images > 128K in web page.
> >
> > NOTE: x & y in asp:Image spec are distinct values - say 128 x 128 or 64 x 64
> > image sizes

>
> try to use a simple <img src=...> tag for that image once, to ensure its
> not the image.
>
> --
> Curt Christianson
> site: http://www.darkfalz.com
> blog: http://blog.darkfalz.com
>

 
Reply With Quote
 
Curt_C [MVP]
Guest
Posts: n/a
 
      4th Aug 2005
DavidS wrote:
> Not sure I follow you - not sure what <img src=> will do for me. I'm
> basically using <asp:Image ...> </asp:Image> to dynamically control the image
> viewed in the web page. The images exists - it appears to be size issue -
> but I need to confirm. I have many images that are viewed - others whose
> size is > 128K just are viewable with red x. If I review the image file
> using Windows Explorer (image file > 128K - it's viewable - but for some
> reason, the <asp:Image> control will not properly preview these images.



the 128k should not be an issue, unless somehow you've tweaked some
settings. The IMG test was to see if it is a problem with the <asp: tag
or if it's an image issue. Just try one of the IMG tag tests once, in
that same page, just to confirm this. It will tell us if we need to look
outside the page (web.config settings perhaps).


--
Curt Christianson
site: http://www.darkfalz.com
blog: http://blog.darkfalz.com
 
Reply With Quote
 
=?Utf-8?B?RGF2aWRT?=
Guest
Posts: n/a
 
      4th Aug 2005
I've tried the following <img src="picture.jpg"></img> in HTML - and I get
red x for image whose size is 226K. If I use <asp:Image Imageurl=> I get
same issue - red x for this image size.

When I do the following in ASP.NET code -
Dim BitObj As Bitmap = New Bitmap("\Groups\Public\LicensingDatabase\Photos\"
& Trim(txt_SS.Text) & ".jpg" )
BitObj.Save( Response.OutputStream,System.Drawing.Imaging.ImageFormat.Jpeg )
The image using this technique is visible on web page - but I need to use
<asp:Image> control instead - I need the image to preview with other web
controls etc...


"Curt_C [MVP]" wrote:

> DavidS wrote:
> > Not sure I follow you - not sure what <img src=> will do for me. I'm
> > basically using <asp:Image ...> </asp:Image> to dynamically control the image
> > viewed in the web page. The images exists - it appears to be size issue -
> > but I need to confirm. I have many images that are viewed - others whose
> > size is > 128K just are viewable with red x. If I review the image file
> > using Windows Explorer (image file > 128K - it's viewable - but for some
> > reason, the <asp:Image> control will not properly preview these images.

>
>
> the 128k should not be an issue, unless somehow you've tweaked some
> settings. The IMG test was to see if it is a problem with the <asp: tag
> or if it's an image issue. Just try one of the IMG tag tests once, in
> that same page, just to confirm this. It will tell us if we need to look
> outside the page (web.config settings perhaps).
>
>
> --
> Curt Christianson
> site: http://www.darkfalz.com
> blog: http://blog.darkfalz.com
>

 
Reply With Quote
 
Curt_C [MVP]
Guest
Posts: n/a
 
      4th Aug 2005
DavidS wrote:
> I've tried the following <img src="picture.jpg"></img> in HTML - and I get
> red x for image whose size is 226K. If I use <asp:Image Imageurl=> I get
> same issue - red x for this image size.
>


Ok...this tells us though that it's nothing to do with the <asp:Image
control, its the image or the site settings.

--
Curt Christianson
site: http://www.darkfalz.com
blog: http://blog.darkfalz.com
 
Reply With Quote
 
=?Utf-8?B?RGF2aWRT?=
Guest
Posts: n/a
 
      4th Aug 2005
So what should I do regarding the site settings - what would I be looking to
change. Basically, the image is ok - since I can preview other ways. Any
suggestion here - to me it seems a size issue using the control - images <
128 always preview with control - other won't - but there visible using
source code I outlined in other reply.

Again, if it's not the control nor image - where do I change site settings -
what fields of machine.config or what config file & attributes?

"Curt_C [MVP]" wrote:

> DavidS wrote:
> > I've tried the following <img src="picture.jpg"></img> in HTML - and I get
> > red x for image whose size is 226K. If I use <asp:Image Imageurl=> I get
> > same issue - red x for this image size.
> >

>
> Ok...this tells us though that it's nothing to do with the <asp:Image
> control, its the image or the site settings.
>
> --
> Curt Christianson
> site: http://www.darkfalz.com
> blog: http://blog.darkfalz.com
>

 
Reply With Quote
 
=?Utf-8?B?RGF2aWRT?=
Guest
Posts: n/a
 
      4th Aug 2005
Basically, any image >= 226KB fails. Any suggestions?

"DavidS" wrote:

> So what should I do regarding the site settings - what would I be looking to
> change. Basically, the image is ok - since I can preview other ways. Any
> suggestion here - to me it seems a size issue using the control - images <
> 128 always preview with control - other won't - but there visible using
> source code I outlined in other reply.
>
> Again, if it's not the control nor image - where do I change site settings -
> what fields of machine.config or what config file & attributes?
>
> "Curt_C [MVP]" wrote:
>
> > DavidS wrote:
> > > I've tried the following <img src="picture.jpg"></img> in HTML - and I get
> > > red x for image whose size is 226K. If I use <asp:Image Imageurl=> I get
> > > same issue - red x for this image size.
> > >

> >
> > Ok...this tells us though that it's nothing to do with the <asp:Image
> > control, its the image or the site settings.
> >
> > --
> > Curt Christianson
> > site: http://www.darkfalz.com
> > blog: http://blog.darkfalz.com
> >

 
Reply With Quote
 
Grant Merwitz
Guest
Posts: n/a
 
      4th Aug 2005
Have you tried viewing this from another computer?
Also another browser? (like FireFox)

"DavidS" <(E-Mail Removed)> wrote in message
news:A18A066C-7FB8-4513-AB64-(E-Mail Removed)...
> Basically, any image >= 226KB fails. Any suggestions?
>
> "DavidS" wrote:
>
>> So what should I do regarding the site settings - what would I be looking
>> to
>> change. Basically, the image is ok - since I can preview other ways.
>> Any
>> suggestion here - to me it seems a size issue using the control - images
>> <
>> 128 always preview with control - other won't - but there visible using
>> source code I outlined in other reply.
>>
>> Again, if it's not the control nor image - where do I change site
>> settings -
>> what fields of machine.config or what config file & attributes?
>>
>> "Curt_C [MVP]" wrote:
>>
>> > DavidS wrote:
>> > > I've tried the following <img src="picture.jpg"></img> in HTML - and
>> > > I get
>> > > red x for image whose size is 226K. If I use <asp:Image Imageurl=> I
>> > > get
>> > > same issue - red x for this image size.
>> > >
>> >
>> > Ok...this tells us though that it's nothing to do with the <asp:Image
>> > control, its the image or the site settings.
>> >
>> > --
>> > Curt Christianson
>> > site: http://www.darkfalz.com
>> > blog: http://blog.darkfalz.com
>> >



 
Reply With Quote
 
=?Utf-8?B?RGF2aWRT?=
Guest
Posts: n/a
 
      4th Aug 2005
Using Windows 2000 and Windows XP Professional - only browser I have is IE
6.0 - and only browser I'd like to use. The image is viewable using Windows
Explorer always. If I attempt to open using IE 6.0 via File | Open... |
Browse - the image files with sizes >= 226KB are viewable, but they default
to Photoeditor in this way.

Again, web page that I'm developing can preview any image of size < 226KB
without problems using either <asp:Image> or <Img Src=> etc...

Any other suggestion? Again, curt suggested maybe it could be setup - I was
looking @ IIS to see WHERE an issue with the image size being >= 226KB - but
I didn't find anything.

Again - all help is greatly appreciated here!

"Grant Merwitz" wrote:

> Have you tried viewing this from another computer?
> Also another browser? (like FireFox)
>
> "DavidS" <(E-Mail Removed)> wrote in message
> news:A18A066C-7FB8-4513-AB64-(E-Mail Removed)...
> > Basically, any image >= 226KB fails. Any suggestions?
> >
> > "DavidS" wrote:
> >
> >> So what should I do regarding the site settings - what would I be looking
> >> to
> >> change. Basically, the image is ok - since I can preview other ways.
> >> Any
> >> suggestion here - to me it seems a size issue using the control - images
> >> <
> >> 128 always preview with control - other won't - but there visible using
> >> source code I outlined in other reply.
> >>
> >> Again, if it's not the control nor image - where do I change site
> >> settings -
> >> what fields of machine.config or what config file & attributes?
> >>
> >> "Curt_C [MVP]" wrote:
> >>
> >> > DavidS wrote:
> >> > > I've tried the following <img src="picture.jpg"></img> in HTML - and
> >> > > I get
> >> > > red x for image whose size is 226K. If I use <asp:Image Imageurl=> I
> >> > > get
> >> > > same issue - red x for this image size.
> >> > >
> >> >
> >> > Ok...this tells us though that it's nothing to do with the <asp:Image
> >> > control, its the image or the site settings.
> >> >
> >> > --
> >> > Curt Christianson
> >> > site: http://www.darkfalz.com
> >> > blog: http://blog.darkfalz.com
> >> >

>
>
>

 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
reply to post msg jladika Microsoft Excel Discussion 4 22nd Jun 2011 10:25 AM
HELP! When I reply to a post.... Ryka Windows Vista General Discussion 0 26th Nov 2007 04:08 PM
reply to ng post -> reply is sent to outbox and stays there =?Utf-8?B?bndlaXNzbWE=?= Windows Vista Mail 1 23rd Aug 2007 01:26 AM
How to reply to post! Richard Windows XP Help 3 19th Dec 2004 03:48 PM
2nd post-no reply to first post-Word not working as editor Vadkins Microsoft Outlook 1 28th Jun 2004 10:11 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 03:06 PM.