473,396 Members | 1,797 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

Need help displaying JPG where filename is from DB Query

I have a list of JPG's which are found in a SQL Server database. When the
page selects a certain piece of data it will refer to the file system
(resident on IIS server with a virtual directory) and files contained within
a certain folder. I have been trying for quite a while to set the ImageURL
of an image control to the correct information.

I have googled till my mind hurts but can find nothing to help. I have even
tried to copy the jpg file to a temppics folder under my site to make that
work with no luck. Just the gif showing the file does not exist.
For example this is the filename of one of the jpgs:

D:\My Music\Classic Rock\Devo - Oh, No! It's Devo\Devo - Oh, No! It's
Devo.jpg

I put this into the ImageURL of the image control. When I look at the
properties of the image from the displayed page the URL ends up being
Devo%2520-%2520Oh,%2520No!%2520It's%2520Devo.jpg.

I am very confused ( a normal thing ) but really need a push in the right
direction here.

Thanks

Lloyd Sheen

Jun 7 '07 #1
8 1742
Here I've detailed all the steps you need to store and retrieve images in a
sql server database:
http://SteveOrr.net/articles/EasyUploads.aspx

--
I hope this helps,
Steve C. Orr,
MCSD, MVP, CSM, ASPInsider
http://SteveOrr.net

"Lloyd Sheen" <a@b.cwrote in message
news:02**********************************@microsof t.com...
>I have a list of JPG's which are found in a SQL Server database. When the
page selects a certain piece of data it will refer to the file system
(resident on IIS server with a virtual directory) and files contained
within a certain folder. I have been trying for quite a while to set the
ImageURL of an image control to the correct information.

I have googled till my mind hurts but can find nothing to help. I have
even tried to copy the jpg file to a temppics folder under my site to make
that work with no luck. Just the gif showing the file does not exist.
For example this is the filename of one of the jpgs:

D:\My Music\Classic Rock\Devo - Oh, No! It's Devo\Devo - Oh, No! It's
Devo.jpg

I put this into the ImageURL of the image control. When I look at the
properties of the image from the displayed page the URL ends up being
Devo%2520-%2520Oh,%2520No!%2520It's%2520Devo.jpg.

I am very confused ( a normal thing ) but really need a push in the right
direction here.

Thanks

Lloyd Sheen
Jun 7 '07 #2

"Steve C. Orr [MCSD, MVP, CSM, ASP Insider]" <St***@Orr.netwrote in
message news:7F**********************************@microsof t.com...
Here I've detailed all the steps you need to store and retrieve images in
a sql server database:
http://SteveOrr.net/articles/EasyUploads.aspx

--
I hope this helps,
Steve C. Orr,
MCSD, MVP, CSM, ASPInsider
http://SteveOrr.net

"Lloyd Sheen" <a@b.cwrote in message
news:02**********************************@microsof t.com...
>>I have a list of JPG's which are found in a SQL Server database. When the
page selects a certain piece of data it will refer to the file system
(resident on IIS server with a virtual directory) and files contained
within a certain folder. I have been trying for quite a while to set the
ImageURL of an image control to the correct information.

I have googled till my mind hurts but can find nothing to help. I have
even tried to copy the jpg file to a temppics folder under my site to
make that work with no luck. Just the gif showing the file does not
exist.
For example this is the filename of one of the jpgs:

D:\My Music\Classic Rock\Devo - Oh, No! It's Devo\Devo - Oh, No! It's
Devo.jpg

I put this into the ImageURL of the image control. When I look at the
properties of the image from the displayed page the URL ends up being
Devo%2520-%2520Oh,%2520No!%2520It's%2520Devo.jpg.

I am very confused ( a normal thing ) but really need a push in the right
direction here.

Thanks

Lloyd Sheen
Steve,

Thanks for the quick reply. I guess my explain is not good. I have
only the filenames in the database. The database is used to speed access to
the info rather than using the filesystem.

When I get a filename of a jpg I want to display the jpg as part of an
aspx page. I have an image control and just want to set the ImageURL
property to get it to show.

All files are under a virtual directory under IIS 7.

Lloyd Sheen

Jun 7 '07 #3
string imgName = imageFromDatabaseRow["image"];
ImageControl.ImageUrl =ResolveUrl("images/"+imgName);
Peter
--
Site: http://www.eggheadcafe.com
UnBlog: http://petesbloggerama.blogspot.com
Short urls & more: http://ittyurl.net


"Lloyd Sheen" wrote:
>
"Steve C. Orr [MCSD, MVP, CSM, ASP Insider]" <St***@Orr.netwrote in
message news:7F**********************************@microsof t.com...
Here I've detailed all the steps you need to store and retrieve images in
a sql server database:
http://SteveOrr.net/articles/EasyUploads.aspx

--
I hope this helps,
Steve C. Orr,
MCSD, MVP, CSM, ASPInsider
http://SteveOrr.net

"Lloyd Sheen" <a@b.cwrote in message
news:02**********************************@microsof t.com...
>I have a list of JPG's which are found in a SQL Server database. When the
page selects a certain piece of data it will refer to the file system
(resident on IIS server with a virtual directory) and files contained
within a certain folder. I have been trying for quite a while to set the
ImageURL of an image control to the correct information.

I have googled till my mind hurts but can find nothing to help. I have
even tried to copy the jpg file to a temppics folder under my site to
make that work with no luck. Just the gif showing the file does not
exist.
For example this is the filename of one of the jpgs:

D:\My Music\Classic Rock\Devo - Oh, No! It's Devo\Devo - Oh, No! It's
Devo.jpg

I put this into the ImageURL of the image control. When I look at the
properties of the image from the displayed page the URL ends up being
Devo%2520-%2520Oh,%2520No!%2520It's%2520Devo.jpg.

I am very confused ( a normal thing ) but really need a push in the right
direction here.

Thanks

Lloyd Sheen

Steve,

Thanks for the quick reply. I guess my explain is not good. I have
only the filenames in the database. The database is used to speed access to
the info rather than using the filesystem.

When I get a filename of a jpg I want to display the jpg as part of an
aspx page. I have an image control and just want to set the ImageURL
property to get it to show.

All files are under a virtual directory under IIS 7.

Lloyd Sheen
Jun 7 '07 #4

"Peter Bromberg [C# MVP]" <pb*******@yahoo.yabbadabbadoo.comwrote in
message news:3D**********************************@microsof t.com...
string imgName = imageFromDatabaseRow["image"];
ImageControl.ImageUrl =ResolveUrl("images/"+imgName);
Peter
--
Site: http://www.eggheadcafe.com
UnBlog: http://petesbloggerama.blogspot.com
Short urls & more: http://ittyurl.net


"Lloyd Sheen" wrote:
>>
"Steve C. Orr [MCSD, MVP, CSM, ASP Insider]" <St***@Orr.netwrote in
message news:7F**********************************@microsof t.com...
Here I've detailed all the steps you need to store and retrieve images
in
a sql server database:
http://SteveOrr.net/articles/EasyUploads.aspx

--
I hope this helps,
Steve C. Orr,
MCSD, MVP, CSM, ASPInsider
http://SteveOrr.net

"Lloyd Sheen" <a@b.cwrote in message
news:02**********************************@microsof t.com...
I have a list of JPG's which are found in a SQL Server database. When
the
page selects a certain piece of data it will refer to the file system
(resident on IIS server with a virtual directory) and files contained
within a certain folder. I have been trying for quite a while to set
the
ImageURL of an image control to the correct information.

I have googled till my mind hurts but can find nothing to help. I
have
even tried to copy the jpg file to a temppics folder under my site to
make that work with no luck. Just the gif showing the file does not
exist.
For example this is the filename of one of the jpgs:

D:\My Music\Classic Rock\Devo - Oh, No! It's Devo\Devo - Oh, No! It's
Devo.jpg

I put this into the ImageURL of the image control. When I look at the
properties of the image from the displayed page the URL ends up being
Devo%2520-%2520Oh,%2520No!%2520It's%2520Devo.jpg.

I am very confused ( a normal thing ) but really need a push in the
right
direction here.

Thanks

Lloyd Sheen

Steve,

Thanks for the quick reply. I guess my explain is not good. I have
only the filenames in the database. The database is used to speed access
to
the info rather than using the filesystem.

When I get a filename of a jpg I want to display the jpg as part of
an
aspx page. I have an image control and just want to set the ImageURL
property to get it to show.

All files are under a virtual directory under IIS 7.

Lloyd Sheen
Ok here is example:

From database I get the folder name and then pickup the filename using
System.IO. The code I am using is below and then followed by the watch
values during debugging:

Dim url As String =
d.GetImageURL(Me.ListOfArtists.SelectedItem.ToStri ng,
Me.ListOfCDs.SelectedItem.ToString, Request)
Me.CDImage.ImageUrl = ResolveUrl(url)
url "D:\My Music\Best Of\Abba - The Complete
Singles Collection\Abba - The Complete Singles Collection.jpg" String
cdimage.ImageUrl "D:\My Music\Best Of\Abba - The Complete Singles
Collection\Abba - The Complete Singles Collection.jpg" String
There is no change to the url by using the ResolveURL so right now I am at a
loss. I am trying to get this to work both in Dev and for an ISS 7 hosted
site. Since I am on Vista and cannot get IIS 7 to talk to VS 2005 I need to
dev and then publish. The virtual directory that the files sit under does
not exist on the VS 2005 dev server so I am having problems resolving all of
this.

Thanks.

Lloyd Sheen

Jun 7 '07 #5
ok. Well, it really gets a lot easier when you create a virtual directory in
IIS that points to the images folder, wherever it may be. then the path will
always be "images/filename.ext".
Peter

--
Site: http://www.eggheadcafe.com
UnBlog: http://petesbloggerama.blogspot.com
Short urls & more: http://ittyurl.net


"Lloyd Sheen" wrote:
>
"Peter Bromberg [C# MVP]" <pb*******@yahoo.yabbadabbadoo.comwrote in
message news:3D**********************************@microsof t.com...
string imgName = imageFromDatabaseRow["image"];
ImageControl.ImageUrl =ResolveUrl("images/"+imgName);
Peter
--
Site: http://www.eggheadcafe.com
UnBlog: http://petesbloggerama.blogspot.com
Short urls & more: http://ittyurl.net


"Lloyd Sheen" wrote:
>
"Steve C. Orr [MCSD, MVP, CSM, ASP Insider]" <St***@Orr.netwrote in
message news:7F**********************************@microsof t.com...
Here I've detailed all the steps you need to store and retrieve images
in
a sql server database:
http://SteveOrr.net/articles/EasyUploads.aspx

--
I hope this helps,
Steve C. Orr,
MCSD, MVP, CSM, ASPInsider
http://SteveOrr.net

"Lloyd Sheen" <a@b.cwrote in message
news:02**********************************@microsof t.com...
I have a list of JPG's which are found in a SQL Server database. When
the
page selects a certain piece of data it will refer to the file system
(resident on IIS server with a virtual directory) and files contained
within a certain folder. I have been trying for quite a while to set
the
ImageURL of an image control to the correct information.

I have googled till my mind hurts but can find nothing to help. I
have
even tried to copy the jpg file to a temppics folder under my site to
make that work with no luck. Just the gif showing the file does not
exist.
For example this is the filename of one of the jpgs:

D:\My Music\Classic Rock\Devo - Oh, No! It's Devo\Devo - Oh, No! It's
Devo.jpg

I put this into the ImageURL of the image control. When I look at the
properties of the image from the displayed page the URL ends up being
Devo%2520-%2520Oh,%2520No!%2520It's%2520Devo.jpg.

I am very confused ( a normal thing ) but really need a push in the
right
direction here.

Thanks

Lloyd Sheen


Steve,

Thanks for the quick reply. I guess my explain is not good. I have
only the filenames in the database. The database is used to speed access
to
the info rather than using the filesystem.

When I get a filename of a jpg I want to display the jpg as part of
an
aspx page. I have an image control and just want to set the ImageURL
property to get it to show.

All files are under a virtual directory under IIS 7.

Lloyd Sheen

Ok here is example:

From database I get the folder name and then pickup the filename using
System.IO. The code I am using is below and then followed by the watch
values during debugging:

Dim url As String =
d.GetImageURL(Me.ListOfArtists.SelectedItem.ToStri ng,
Me.ListOfCDs.SelectedItem.ToString, Request)
Me.CDImage.ImageUrl = ResolveUrl(url)
url "D:\My Music\Best Of\Abba - The Complete
Singles Collection\Abba - The Complete Singles Collection.jpg" String
cdimage.ImageUrl "D:\My Music\Best Of\Abba - The Complete Singles
Collection\Abba - The Complete Singles Collection.jpg" String
There is no change to the url by using the ResolveURL so right now I am at a
loss. I am trying to get this to work both in Dev and for an ISS 7 hosted
site. Since I am on Vista and cannot get IIS 7 to talk to VS 2005 I need to
dev and then publish. The virtual directory that the files sit under does
not exist on the VS 2005 dev server so I am having problems resolving all of
this.

Thanks.

Lloyd Sheen
Jun 7 '07 #6

"Peter Bromberg [C# MVP]" <pb*******@yahoo.yabbadabbadoo.comwrote in
message news:B2**********************************@microsof t.com...
ok. Well, it really gets a lot easier when you create a virtual directory
in
IIS that points to the images folder, wherever it may be. then the path
will
always be "images/filename.ext".
Peter

--
Site: http://www.eggheadcafe.com
UnBlog: http://petesbloggerama.blogspot.com
Short urls & more: http://ittyurl.net


"Lloyd Sheen" wrote:
>>
"Peter Bromberg [C# MVP]" <pb*******@yahoo.yabbadabbadoo.comwrote in
message news:3D**********************************@microsof t.com...
string imgName = imageFromDatabaseRow["image"];
ImageControl.ImageUrl =ResolveUrl("images/"+imgName);
Peter
--
Site: http://www.eggheadcafe.com
UnBlog: http://petesbloggerama.blogspot.com
Short urls & more: http://ittyurl.net


"Lloyd Sheen" wrote:
"Steve C. Orr [MCSD, MVP, CSM, ASP Insider]" <St***@Orr.netwrote in
message news:7F**********************************@microsof t.com...
Here I've detailed all the steps you need to store and retrieve
images
in
a sql server database:
http://SteveOrr.net/articles/EasyUploads.aspx

--
I hope this helps,
Steve C. Orr,
MCSD, MVP, CSM, ASPInsider
http://SteveOrr.net

"Lloyd Sheen" <a@b.cwrote in message
news:02**********************************@microsof t.com...
I have a list of JPG's which are found in a SQL Server database.
When
the
page selects a certain piece of data it will refer to the file
system
(resident on IIS server with a virtual directory) and files
contained
within a certain folder. I have been trying for quite a while to
set
the
ImageURL of an image control to the correct information.

I have googled till my mind hurts but can find nothing to help. I
have
even tried to copy the jpg file to a temppics folder under my site
to
make that work with no luck. Just the gif showing the file does
not
exist.
For example this is the filename of one of the jpgs:

D:\My Music\Classic Rock\Devo - Oh, No! It's Devo\Devo - Oh, No!
It's
Devo.jpg

I put this into the ImageURL of the image control. When I look at
the
properties of the image from the displayed page the URL ends up
being
Devo%2520-%2520Oh,%2520No!%2520It's%2520Devo.jpg.

I am very confused ( a normal thing ) but really need a push in the
right
direction here.

Thanks

Lloyd Sheen
Steve,

Thanks for the quick reply. I guess my explain is not good. I
have
only the filenames in the database. The database is used to speed
access
to
the info rather than using the filesystem.

When I get a filename of a jpg I want to display the jpg as part
of
an
aspx page. I have an image control and just want to set the ImageURL
property to get it to show.

All files are under a virtual directory under IIS 7.

Lloyd Sheen

Ok here is example:

From database I get the folder name and then pickup the filename using
System.IO. The code I am using is below and then followed by the watch
values during debugging:

Dim url As String =
d.GetImageURL(Me.ListOfArtists.SelectedItem.ToStr ing,
Me.ListOfCDs.SelectedItem.ToString, Request)
Me.CDImage.ImageUrl = ResolveUrl(url)
url "D:\My Music\Best Of\Abba - The Complete
Singles Collection\Abba - The Complete Singles Collection.jpg" String
cdimage.ImageUrl "D:\My Music\Best Of\Abba - The Complete Singles
Collection\Abba - The Complete Singles Collection.jpg" String
There is no change to the url by using the ResolveURL so right now I am
at a
loss. I am trying to get this to work both in Dev and for an ISS 7
hosted
site. Since I am on Vista and cannot get IIS 7 to talk to VS 2005 I need
to
dev and then publish. The virtual directory that the files sit under
does
not exist on the VS 2005 dev server so I am having problems resolving all
of
this.

Thanks.

Lloyd Sheen
Ok what I ended up doing is on the request I copy the jpg if it does not
already exist (they are not large) to a folder under my website. This in
combo with the ResolveURL gives the required result for both the dev and IIS
versions with no code change.

But this still does not answer my original question. How would I create a
URL which would point to a file which is no under my web site?

Thanks
Lloyd Sheen

Jun 8 '07 #7
to answer your unanswered question, a url to an image needs to be a valid
http-addressable url. It doesn't matter "where" that is, as long as it is a
web site where an <img src="http://www.wherever.com/images/yourimage.jpg" >
will work.
Peter

--
Site: http://www.eggheadcafe.com
UnBlog: http://petesbloggerama.blogspot.com
Short urls & more: http://ittyurl.net


"Lloyd Sheen" wrote:
>
"Peter Bromberg [C# MVP]" <pb*******@yahoo.yabbadabbadoo.comwrote in
message news:B2**********************************@microsof t.com...
ok. Well, it really gets a lot easier when you create a virtual directory
in
IIS that points to the images folder, wherever it may be. then the path
will
always be "images/filename.ext".
Peter

--
Site: http://www.eggheadcafe.com
UnBlog: http://petesbloggerama.blogspot.com
Short urls & more: http://ittyurl.net


"Lloyd Sheen" wrote:
>
"Peter Bromberg [C# MVP]" <pb*******@yahoo.yabbadabbadoo.comwrote in
message news:3D**********************************@microsof t.com...
string imgName = imageFromDatabaseRow["image"];
ImageControl.ImageUrl =ResolveUrl("images/"+imgName);
Peter
--
Site: http://www.eggheadcafe.com
UnBlog: http://petesbloggerama.blogspot.com
Short urls & more: http://ittyurl.net


"Lloyd Sheen" wrote:


"Steve C. Orr [MCSD, MVP, CSM, ASP Insider]" <St***@Orr.netwrote in
message news:7F**********************************@microsof t.com...
Here I've detailed all the steps you need to store and retrieve
images
in
a sql server database:
http://SteveOrr.net/articles/EasyUploads.aspx

--
I hope this helps,
Steve C. Orr,
MCSD, MVP, CSM, ASPInsider
http://SteveOrr.net

"Lloyd Sheen" <a@b.cwrote in message
news:02**********************************@microsof t.com...
I have a list of JPG's which are found in a SQL Server database.
When
the
page selects a certain piece of data it will refer to the file
system
(resident on IIS server with a virtual directory) and files
contained
within a certain folder. I have been trying for quite a while to
set
the
ImageURL of an image control to the correct information.

I have googled till my mind hurts but can find nothing to help. I
have
even tried to copy the jpg file to a temppics folder under my site
to
make that work with no luck. Just the gif showing the file does
not
exist.
For example this is the filename of one of the jpgs:

D:\My Music\Classic Rock\Devo - Oh, No! It's Devo\Devo - Oh, No!
It's
Devo.jpg

I put this into the ImageURL of the image control. When I look at
the
properties of the image from the displayed page the URL ends up
being
Devo%2520-%2520Oh,%2520No!%2520It's%2520Devo.jpg.

I am very confused ( a normal thing ) but really need a push in the
right
direction here.

Thanks

Lloyd Sheen


Steve,

Thanks for the quick reply. I guess my explain is not good. I
have
only the filenames in the database. The database is used to speed
access
to
the info rather than using the filesystem.

When I get a filename of a jpg I want to display the jpg as part
of
an
aspx page. I have an image control and just want to set the ImageURL
property to get it to show.

All files are under a virtual directory under IIS 7.

Lloyd Sheen
Ok here is example:

From database I get the folder name and then pickup the filename using
System.IO. The code I am using is below and then followed by the watch
values during debugging:

Dim url As String =
d.GetImageURL(Me.ListOfArtists.SelectedItem.ToStri ng,
Me.ListOfCDs.SelectedItem.ToString, Request)
Me.CDImage.ImageUrl = ResolveUrl(url)
url "D:\My Music\Best Of\Abba - The Complete
Singles Collection\Abba - The Complete Singles Collection.jpg" String
cdimage.ImageUrl "D:\My Music\Best Of\Abba - The Complete Singles
Collection\Abba - The Complete Singles Collection.jpg" String
There is no change to the url by using the ResolveURL so right now I am
at a
loss. I am trying to get this to work both in Dev and for an ISS 7
hosted
site. Since I am on Vista and cannot get IIS 7 to talk to VS 2005 I need
to
dev and then publish. The virtual directory that the files sit under
does
not exist on the VS 2005 dev server so I am having problems resolving all
of
this.

Thanks.

Lloyd Sheen

Ok what I ended up doing is on the request I copy the jpg if it does not
already exist (they are not large) to a folder under my website. This in
combo with the ResolveURL gives the required result for both the dev and IIS
versions with no code change.

But this still does not answer my original question. How would I create a
URL which would point to a file which is no under my web site?

Thanks
Lloyd Sheen
Jun 8 '07 #8

Writing your own IHttpHandler is the best way to achieve image retrieving
that performs well.

Find the NorthwindImageGrabber in this demo code by Jeff Prosise

http://www.wintellect.com/Downloads/...%20ASP.NET.zip

and corresponding PictureGridView.aspx

"Lloyd Sheen" <a@b.cwrote in message
news:02**********************************@microsof t.com...
>I have a list of JPG's which are found in a SQL Server database. When the
page selects a certain piece of data it will refer to the file system
(resident on IIS server with a virtual directory) and files contained
within a certain folder. I have been trying for quite a while to set the
ImageURL of an image control to the correct information.

I have googled till my mind hurts but can find nothing to help. I have
even tried to copy the jpg file to a temppics folder under my site to make
that work with no luck. Just the gif showing the file does not exist.
For example this is the filename of one of the jpgs:

D:\My Music\Classic Rock\Devo - Oh, No! It's Devo\Devo - Oh, No! It's
Devo.jpg

I put this into the ImageURL of the image control. When I look at the
properties of the image from the displayed page the URL ends up being
Devo%2520-%2520Oh,%2520No!%2520It's%2520Devo.jpg.

I am very confused ( a normal thing ) but really need a push in the right
direction here.

Thanks

Lloyd Sheen

Jun 10 '07 #9

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

Similar topics

4
by: Gregory | last post by:
Hello, I've managed to build two web pages, one that can display images with associated text data in a table, and one that can resize and display images without the text. I'd like to resize the...
9
by: matthiasjanes | last post by:
Hi, Maybe someone of you can help me. I'm trying to display an image in memory(open file) with an cgi script - but it want work proberly: I'm running an Cgi webserver (CgiServerGui.py). ...
0
by: Wynter | last post by:
RE: from Displaying a Document using the ASPNET user account to the Client Browser discussion (3/2/2004 Buddy Thanks for helping me on getting the document to display. But now I am left with a...
6
by: Matt K. | last post by:
Hi there, I have a form in an Access project that contains a subform which displays the results of a query of the style "select * from where = #a certain date#". In the main part of the form...
5
by: dustu | last post by:
Hi, I'm using lcc-win32 on Windows 2000 as compiler/IDE. The details are: Input file (sample - the no. of digits per line may change): ---> 1111111111111111.00 1111111111111111.01...
10
by: David Thielen | last post by:
Hi; I have help html pages for each page of my ASP.NET webapp. So for the page datasource.aspx, I have help\datasource.htm. Bu what I want when the hyperlink is clicked, for it to look for the...
5
by: ljuljacka | last post by:
I'm trying to display resized images. Locations of images are fetched from database. The problem is that with the following code, I get only the first image displayed: <?php...
1
by: bimeldip | last post by:
Hi, I've been dabbling with mysql php and xml... I have managed to learn how to upload xml file into mysql datbase and download the file from mysql database to display the content on the file....
14
by: ashraf02 | last post by:
i used a code from a website that allows you to display images. however everything works fine from storing the image to the database but it does not display the image. the following code is the...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
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,...
0
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...
0
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...

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.