473,799 Members | 3,671 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

image.src

Hey

asp.net 2.0

I have a webpage which generate thumbnail images. In another webpage I want
to display these images...
I tryed using this solution:
<img ID="photo" src="../../images/helloworld.jpeg "/>
But this gives this error:
File '../../images/helloworld.jpeg ' was not found

The file helloworld.jpeg exist in the ../../images/ folder.....

If I in solution explorer right click and choose "Add Existing Item" and add
this image, then this works.... but the images are generated dynamically in
runtime so adding them to the project isn't a good solution

Any ideas what I should do to solve this?

Jeff

Jul 3 '06 #1
5 2575
Jeff wrote:
Hey

asp.net 2.0

I have a webpage which generate thumbnail images. In another webpage
I want to display these images...
I tryed using this solution:
<img ID="photo" src="../../images/helloworld.jpeg "/>
But this gives this error:
File '../../images/helloworld.jpeg ' was not found

The file helloworld.jpeg exist in the ../../images/ folder.....

If I in solution explorer right click and choose "Add Existing Item"
and add this image, then this works.... but the images are generated
dynamically in runtime so adding them to the project isn't a good
solution
If the images are generated dynamically in runtime, why are you
refering to them statically at compile time?

I suggest either:
1) adding a "dummy" image that is replaced at runtime with the real image
or
2) removing the static reference and setting the src property at runtime

--

Riki
Jul 3 '06 #2

"Riki" <ri**@dontnagme .comwrote in message
news:uI******** ******@TK2MSFTN GP02.phx.gbl...
Jeff wrote:
>Hey

asp.net 2.0

I have a webpage which generate thumbnail images. In another webpage
I want to display these images...
I tryed using this solution:
<img ID="photo" src="../../images/helloworld.jpeg "/>
But this gives this error:
File '../../images/helloworld.jpeg ' was not found

The file helloworld.jpeg exist in the ../../images/ folder.....

If I in solution explorer right click and choose "Add Existing Item"
and add this image, then this works.... but the images are generated
dynamically in runtime so adding them to the project isn't a good
solution

If the images are generated dynamically in runtime, why are you
refering to them statically at compile time?

I suggest either:
1) adding a "dummy" image that is replaced at runtime with the real image
or
2) removing the static reference and setting the src property at runtime

--

Riki
Hmm the code I mentioned above was just an example, I've also tryed this
way:
<img ID="photo" src= "<%# Eval("File") %>"/but it gives the same error....

I wonder about your 2. suggestion:
This list of images are displayed in a Repeater control. Is it a good
solution to use the rptInbox_ItemDa taBound (my repeaer control's ID =
rptInbox) event do dynamically add the image to the webpage or are there
some other event's which suits better?... Sorry if my questions sounds odd,
but I'm a newbie...

Jeff
Jul 3 '06 #3
Hey
>
asp.net 2.0

I have a webpage which generate thumbnail images. In another webpage I want
to display these images...
I tryed using this solution:
<img ID="photo" src="../../images/helloworld.jpeg "/>
But this gives this error:
File '../../images/helloworld.jpeg ' was not found

The file helloworld.jpeg exist in the ../../images/ folder.....

If I in solution explorer right click and choose "Add Existing Item" and add
this image, then this works.... but the images are generated dynamically in
runtime so adding them to the project isn't a good solution

Any ideas what I should do to solve this?

Jeff
I take it the *browser* gives that errormessage?
What is in the html that the browser received (do a "view source").
Does the "src" still point to the directory you think it should point
at?
Reason: if the "src" attribute is processed by the asp.net environment
(as it will be when you add a runat=server attribute), then it might be
changed. When this code is in an ascx, the path is taken to be relative
to the *ascx*, not relative to the aspx it ends up in.
When this is the case, you could use "webapp-root-relative" paths, by
starting with a "~" (~/images/helloworld.jpeg ). This will work wherever
the application is installed: //localhost/theApp/Web or
//www.somesite.co m

Hans Kesting
Jul 3 '06 #4
Jeff wrote:
"Riki" <ri**@dontnagme .comwrote in message
news:uI******** ******@TK2MSFTN GP02.phx.gbl...
>Jeff wrote:
>>Hey

asp.net 2.0

I have a webpage which generate thumbnail images. In another webpage
I want to display these images...
I tryed using this solution:
<img ID="photo" src="../../images/helloworld.jpeg "/>
But this gives this error:
File '../../images/helloworld.jpeg ' was not found

The file helloworld.jpeg exist in the ../../images/ folder.....

If I in solution explorer right click and choose "Add Existing Item"
and add this image, then this works.... but the images are generated
dynamically in runtime so adding them to the project isn't a good
solution

If the images are generated dynamically in runtime, why are you
refering to them statically at compile time?

I suggest either:
1) adding a "dummy" image that is replaced at runtime with the real
image or
2) removing the static reference and setting the src property at
runtime --

Riki

Hmm the code I mentioned above was just an example, I've also tryed
this way:
<img ID="photo" src= "<%# Eval("File") %>"/but it gives the same
error....
This should work, but you should fix the outer quotes into single quotes:
<img ID="photo" src= '<%# Eval("File") %>'/>
I wonder about your 2. suggestion:
This list of images are displayed in a Repeater control. Is it a good
solution to use the rptInbox_ItemDa taBound (my repeaer control's ID =
rptInbox) event do dynamically add the image to the webpage or are
there some other event's which suits better?... Sorry if my questions
sounds odd, but I'm a newbie...
We all were newbies once... so that's no problem.
ItemDataBound is ok, but the Eval method above is the preferred one.

See also Hans' remark.

--

Riki
Jul 3 '06 #5
Thank you
"Riki" <ri**@dontnagme .comwrote in message
news:uE******** ******@TK2MSFTN GP02.phx.gbl...
Jeff wrote:
>"Riki" <ri**@dontnagme .comwrote in message
news:uI******* *******@TK2MSFT NGP02.phx.gbl.. .
>>Jeff wrote:
Hey

asp.net 2.0

I have a webpage which generate thumbnail images. In another webpage
I want to display these images...
I tryed using this solution:
<img ID="photo" src="../../images/helloworld.jpeg "/>
But this gives this error:
File '../../images/helloworld.jpeg ' was not found

The file helloworld.jpeg exist in the ../../images/ folder.....

If I in solution explorer right click and choose "Add Existing Item"
and add this image, then this works.... but the images are generated
dynamicall y in runtime so adding them to the project isn't a good
solution

If the images are generated dynamically in runtime, why are you
refering to them statically at compile time?

I suggest either:
1) adding a "dummy" image that is replaced at runtime with the real
image or
2) removing the static reference and setting the src property at
runtime --

Riki

Hmm the code I mentioned above was just an example, I've also tryed
this way:
<img ID="photo" src= "<%# Eval("File") %>"/but it gives the same
error....

This should work, but you should fix the outer quotes into single quotes:
<img ID="photo" src= '<%# Eval("File") %>'/>
>I wonder about your 2. suggestion:
This list of images are displayed in a Repeater control. Is it a good
solution to use the rptInbox_ItemDa taBound (my repeaer control's ID =
rptInbox) event do dynamically add the image to the webpage or are
there some other event's which suits better?... Sorry if my questions
sounds odd, but I'm a newbie...

We all were newbies once... so that's no problem.
ItemDataBound is ok, but the Eval method above is the preferred one.

See also Hans' remark.

--

Riki

Jul 3 '06 #6

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

Similar topics

9
3349
by: Pierre Tremblay | last post by:
Hi! I am trying to display an image in my html document. The document contains the following line: <td class="Input"><img src=getimage.php?tbl=dbo.Employees&type=jpg&col=Photo&idCol=EmployeeID&id=1 Border=0 alt=''>&nbsp;</td>
3
11768
by: dave | last post by:
Hello there, I am at my wit's end ! I have used the following script succesfully to upload an image to my web space. But what I really want to be able to do is to update an existing record in a table in MySQL with the path & filename to the image. I have successfully uploaded and performed an update query on the database, but the problem I have is I cannot retain the primary key field in a variable which is then used in a SQL update...
8
2615
by: Jef Driesen | last post by:
I'm implementing some image processing algorithms in C++. I created a class called 'image' (see declaration below), that will take care of the memory allocations and some basic (mathematical) stuff. The class will behave like a std::vector (copy constructor and assignment create a deep copy), but with 2D indexing. Now I also need a 'view' class that will behave like a reference to an 'image' (can only be constructed from an existing...
6
3321
by: QuasiChameleon | last post by:
Hi, I'm trying to create a grayscale image class that reads and writes grayscale Targa format. This works well with smaller images, but corrupts larger images and creates a "Segmentation fault (core dumped)" error. I am at a loss as to why this works only part of the time. I hope it's proper etiquette to post the code below (3 files). Can someone please show me what's wrong with the following code? I
15
31815
by: Anand Ganesh | last post by:
HI All, I have an Image. I want to clip a portion of it and copy to another image. How to do this? I know the bounding rectangle to clip. Any suggestions please. Thanks for your time and help. Regards
7
11642
by: lgbjr | last post by:
Hello All, I¡¯m using a context menu associated with some pictureboxes to provide copy/paste functionality. Copying the image to the clipboard was easy. But pasting an image from the clipboard is proving to be more difficult. These pictureboxes are bound to an AccessDB. If the user wants to add an image, they select an image using an OpenFileDialog: Dim result As DialogResult = Pic_Sel.ShowDialog() If (result = DialogResult.OK) Then
15
5367
by: David Lozzi | last post by:
Howdy, I have a function that uploads an image and that works great. I love ..Nets built in upload, so much easier than 3rd party uploaders! Now I am making a public function that will take the path of the uploaded image, and resize it with the provided dimensions. My function is below. The current function is returning an error when run from the upload function: A generic error occurred in GDI+. Not sure what exactly that means. From what...
6
3077
by: comp.lang.php | last post by:
/** * Generate the random security image * * @access public * @param $willUseFilePath (default false) boolean to determine if you will be using a file path * @param mixed $filePath (optional) file path to store image resource object contents * @see actual_path */
1
11095
by: bharathv6 | last post by:
i need to do is modify the image in memory like resizing the image in memory etc ... with out saving it disk as i have to return back the image with out saving it disk PIL supports the use of StringIO objects being passed in place of file objects. StringIO objects are binary strings of variable length that are kept in memory so i saved the image in stringio objects the following code does that for gif image ...
0
10785
Debadatta Mishra
by: Debadatta Mishra | last post by:
Introduction In this article I will provide you an approach to manipulate an image file. This article gives you an insight into some tricks in java so that you can conceal sensitive information inside an image, hide your complete image as text ,search for a particular image inside a directory, minimize the size of the image. However this is not a new concept, there is a concept called Steganography which enables to conceal your secret...
0
9543
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,...
0
10488
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10257
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
9077
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...
1
7567
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6808
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
5467
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5588
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
3761
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

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.