473,651 Members | 2,787 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

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

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
Nov 19 '05 #1
13 1337
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
Nov 19 '05 #2
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

Nov 19 '05 #3
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
Nov 19 '05 #4
I've tried the following <img src="picture.jp g"></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\Licensi ngDatabase\Phot os\"
& Trim(txt_SS.Tex t) & ".jpg" )
BitObj.Save( Response.Output Stream,System.D rawing.Imaging. ImageFormat.Jpe g )
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

Nov 19 '05 #5
DavidS wrote:
I've tried the following <img src="picture.jp g"></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
Nov 19 '05 #6
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.jp g"></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

Nov 19 '05 #7
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.jp g"></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

Nov 19 '05 #8
Have you tried viewing this from another computer?
Also another browser? (like FireFox)

"DavidS" <Da****@discuss ions.microsoft. com> wrote in message
news:A1******** *************** ***********@mic rosoft.com...
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.jp g"></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
>

Nov 19 '05 #9
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" <Da****@discuss ions.microsoft. com> wrote in message
news:A1******** *************** ***********@mic rosoft.com...
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.jp g"></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
>


Nov 19 '05 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

5
1900
by: perseus | last post by:
Well, As you all have seen, I received a host of messages that say that I should not post up here a question about BOOST. BOOST is a FREE interface that allows you, THE STANDARD C++ USERS, to read and manipulate the files of a directory. I asked a question about configuring this wonderful and helpful interface, and all I got was hostile and stupid messages with absolutely no answer to my question. I just wanted to tell you that I...
1
1056
by: John McClamrock | last post by:
Hello, I'm just starting out with ASP.NET and it looks great. I have minimal programming experience and have some PHP experience. I've also pretty much mastered HTML. I need a little help here. I made an access database with the Web Matrix, and connected to it using the Select function, but how do I display information on the page? Database: database.mdb Table: name
11
1417
by: MOOVBUFF | last post by:
I've been looking (wasting my time) for simple solutions such as Updating a database in VS 2005 and all I get is either no answer or another question. Obviously the people in the newsgroup can't read. At least the people in the VB 6.0 newsgroup answer without throwing in an insult. Good Ridance!
2
968
by: tashy | last post by:
I REALLY NEED HELP HERE!!!!!!!!!!!!!!!!!!!!!!!!!!!!! I'm trying to upload images to a website, but i repeatedly get this error message server object error ‘ASP 0177: 800401f3’ Server. CreateObject Failed. /admin/texteditor/dialogs/image/folder.asp, line 35. Can anybody help me out? I will really appreciate it
8
2928
by: Mr. SweatyFinger | last post by:
where have they all gone. alt.suicide? alt.findContol.then.slit.your.own.throat?
4
1532
by: sandyw | last post by:
I need a little help here with extends. I have three class 1. EventsClass 2. TicketClass I have the extends to EventsClass 3. BuyerClass. I have the extends to EventsClass All three class have Accessors and Mutator Methods. When I'm trying to create the Public buyterTracker I get an error but it does not tell me what kind of error
2
1655
by: Leon | last post by:
Hi, Basically I've written a NNTP-client which is able to post new messages, but inable to post replies to messages. I've tried posting a reference string into the header of the new article containing only the message-Id I reply to : results in a new post I've tried posting a (concat) reference string into the header of the new article containing all message-id's (message-tree) of the message I reply
16
2328
by: squrel | last post by:
Hello everyone.. I need some help here... i m using VB6 and SQLServer2000... i have forms regarding some cases in courts and in my form i have two DTPicker called as Entrydate and Closedate... these 2 are invisible to the user bt the things is when a user create a new case in a system automatically the date has to be created as a current date by default in DTPentrydate and when the user close the case the date has to be closed automatically...
0
8275
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
1
8465
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8579
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
7297
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
5612
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4283
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
2699
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
1
1909
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
2
1587
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.