473,394 Members | 1,870 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,394 software developers and data experts.

Can images be saved to Session State and retrieved?

Hello -

I have images saved in my SQL SERVER 2000 database. Using ASP.NET (C#) is
there any way to temporarily save an image to a session object, and after
running some other operations, later retrieve the image from the session
object, convert it back to an image, and re-save it to the database?

Thanks?
Nov 19 '05 #1
9 9752
Why not? Check out the Bitmap class.

-Brock
DevelopMentor
http://staff.develop.com/ballen
Hello -

I have images saved in my SQL SERVER 2000 database. Using ASP.NET (C#)
is there any way to temporarily save an image to a session object, and
after running some other operations, later retrieve the image from the
session object, convert it back to an image, and re-save it to the
database?

Thanks?


Nov 19 '05 #2
Hi,

Why not covert the Image to Binary and then store it in session with the Img
format?
Is this a bad idea?

++Vijay R
"Brock Allen" wrote:
Why not? Check out the Bitmap class.

-Brock
DevelopMentor
http://staff.develop.com/ballen
Hello -

I have images saved in my SQL SERVER 2000 database. Using ASP.NET (C#)
is there any way to temporarily save an image to a session object, and
after running some other operations, later retrieve the image from the
session object, convert it back to an image, and re-save it to the
database?

Thanks?


Nov 19 '05 #3
Thanks Vijay,

As simple as this might sound, it's taking me forever. Could you pls point
me to some sample code?

The sample code i find, requires that i know the size and file type of the
image (bitmap) in the database, which i might not... I don't seem to find a
sample which is as "simple" as your solution seems to imply.

thanks

"Vijay" wrote:
Hi,

Why not covert the Image to Binary and then store it in session with the Img
format?
Is this a bad idea?

++Vijay R
"Brock Allen" wrote:
Why not? Check out the Bitmap class.

-Brock
DevelopMentor
http://staff.develop.com/ballen
Hello -

I have images saved in my SQL SERVER 2000 database. Using ASP.NET (C#)
is there any way to temporarily save an image to a session object, and
after running some other operations, later retrieve the image from the
session object, convert it back to an image, and re-save it to the
database?

Thanks?


Nov 19 '05 #4
Thanks Brock,

The bitmap class requires that i know that width and height of the image, to
first declare and instantiate the bitmap. Can this be done w/out know this
info? And, i'm also quite new at this, can you point me to some examples. I
have not found an example which enables me to save to session state and
retrieve. Only to save to file system... or retreive via stream with all of
the information coming from the stream object, which is difficult for me to
manipulate into an example that's right for me.

thanks,

"Brock Allen" wrote:
Why not? Check out the Bitmap class.

-Brock
DevelopMentor
http://staff.develop.com/ballen
Hello -

I have images saved in my SQL SERVER 2000 database. Using ASP.NET (C#)
is there any way to temporarily save an image to a session object, and
after running some other operations, later retrieve the image from the
session object, convert it back to an image, and re-save it to the
database?

Thanks?


Nov 19 '05 #5
Hi,

I think this should work just for converting the bitmap to a byte stream:
--------------------------------------------------------------------
FileStream Fs = new
FileStream(TextBox2.Text.Trim(),FileMode.Open,File Access.Read);
byte[] RawData = new byte[Fs.Length];

Fs.Read(RawData,0,Convert.ToInt32(Fs.Length));
Fs.Close();

Session.Add("FileData",RawData);
-------------------------------------------------------------------

Now assuming that the file format is always bmp, we have to work on
converting it back into bmp.
will work on this :-)

++Vijay R
"charliewest" wrote:
Thanks Vijay,

As simple as this might sound, it's taking me forever. Could you pls point
me to some sample code?

The sample code i find, requires that i know the size and file type of the
image (bitmap) in the database, which i might not... I don't seem to find a
sample which is as "simple" as your solution seems to imply.

thanks

"Vijay" wrote:
Hi,

Why not covert the Image to Binary and then store it in session with the Img
format?
Is this a bad idea?

++Vijay R
"Brock Allen" wrote:
Why not? Check out the Bitmap class.

-Brock
DevelopMentor
http://staff.develop.com/ballen

> Hello -
>
> I have images saved in my SQL SERVER 2000 database. Using ASP.NET (C#)
> is there any way to temporarily save an image to a session object, and
> after running some other operations, later retrieve the image from the
> session object, convert it back to an image, and re-save it to the
> database?
>
> Thanks?
>

Nov 19 '05 #6
Hi Charlie,

I wanted to ask,
How is the bitmap stored in the database? as a Blob or in bytes?
if it is stored in bytes, then I feel that Blob/Image is the better option.

you can insert the byte array as I mentioned before in the Image field of
the database.
For retrieving and displaying the image, put the byte array into a stream
and then create a bitmap file from the stream.

----------------------------------------------------------------------
MemoryStream stream = new MemoryStream(RawData, true);
stream.Write(RawData, 0, RawData.Length);

Bitmap bmp = new Bitmap(stream);
stream.close();
---------------------------------------------------------------------

Hope this helped

++Vijay R
"Vijay" wrote:
Hi,

I think this should work just for converting the bitmap to a byte stream:
--------------------------------------------------------------------
FileStream Fs = new
FileStream(TextBox2.Text.Trim(),FileMode.Open,File Access.Read);
byte[] RawData = new byte[Fs.Length];

Fs.Read(RawData,0,Convert.ToInt32(Fs.Length));
Fs.Close();

Session.Add("FileData",RawData);
-------------------------------------------------------------------

Now assuming that the file format is always bmp, we have to work on
converting it back into bmp.
will work on this :-)

++Vijay R
"charliewest" wrote:
Thanks Vijay,

As simple as this might sound, it's taking me forever. Could you pls point
me to some sample code?

The sample code i find, requires that i know the size and file type of the
image (bitmap) in the database, which i might not... I don't seem to find a
sample which is as "simple" as your solution seems to imply.

thanks

"Vijay" wrote:
Hi,

Why not covert the Image to Binary and then store it in session with the Img
format?
Is this a bad idea?

++Vijay R
"Brock Allen" wrote:

> Why not? Check out the Bitmap class.
>
> -Brock
> DevelopMentor
> http://staff.develop.com/ballen
>
>
>
> > Hello -
> >
> > I have images saved in my SQL SERVER 2000 database. Using ASP.NET (C#)
> > is there any way to temporarily save an image to a session object, and
> > after running some other operations, later retrieve the image from the
> > session object, convert it back to an image, and re-save it to the
> > database?
> >
> > Thanks?
> >
>
>
>
>

Nov 19 '05 #7
Vijay,

First, i really appreciate your help sticking with this. I think i'm almost
there, but the examples i find (and that you provide) assume i pull the image
directly from the Web Form, and save the image to the Session State, and
then, pull the image from the session state. Where and how does the database
fit in?

I've been trying to do the following with zero luck:

byte[] RawData = new
byte[Convert.ToInt32(ds.Tables["Client"].Rows[0]["ImageSize"])];
MemoryStream stream = new MemoryStream(ds.Tables["Client"].Rows[0]["Image"],
FileMode.Open, FileAccess.Read);
Fs.Read(RawData, 0, Convert.ToInt32(Fs.Length));
Fs.Close();
Session["ImageByte"] = RawData;

And then....

Byte[] RawData = new byte[Convert.ToInt32(Session["ImageSize"].ToString())];
MemoryStream stream = new MemoryStream(RawData, true);
stream.Write(RawData, 0, RawData.Length);
Bitmap bmp = new Bitmap(stream);
stream.Close();

This is really going nowhere... i really am not catching how this conversion
between images, bytes and bitmaps is working....

If you could provide any insight on how the image is somehow saved to the a
session state var directly from the database, and how this is read from a
session state var... (which i think you've already provide in a former
response) that would be frankly amazing...

thanks,

"Vijay" wrote:
Hi Charlie,

I wanted to ask,
How is the bitmap stored in the database? as a Blob or in bytes?
if it is stored in bytes, then I feel that Blob/Image is the better option.

you can insert the byte array as I mentioned before in the Image field of
the database.
For retrieving and displaying the image, put the byte array into a stream
and then create a bitmap file from the stream.

----------------------------------------------------------------------
MemoryStream stream = new MemoryStream(RawData, true);
stream.Write(RawData, 0, RawData.Length);

Bitmap bmp = new Bitmap(stream);
stream.close();
---------------------------------------------------------------------

Hope this helped

++Vijay R
"Vijay" wrote:
Hi,

I think this should work just for converting the bitmap to a byte stream:
--------------------------------------------------------------------
FileStream Fs = new
FileStream(TextBox2.Text.Trim(),FileMode.Open,File Access.Read);
byte[] RawData = new byte[Fs.Length];

Fs.Read(RawData,0,Convert.ToInt32(Fs.Length));
Fs.Close();

Session.Add("FileData",RawData);
-------------------------------------------------------------------

Now assuming that the file format is always bmp, we have to work on
converting it back into bmp.
will work on this :-)

++Vijay R
"charliewest" wrote:
Thanks Vijay,

As simple as this might sound, it's taking me forever. Could you pls point
me to some sample code?

The sample code i find, requires that i know the size and file type of the
image (bitmap) in the database, which i might not... I don't seem to find a
sample which is as "simple" as your solution seems to imply.

thanks

"Vijay" wrote:

> Hi,
>
> Why not covert the Image to Binary and then store it in session with the Img
> format?
> Is this a bad idea?
>
> ++Vijay R
>
>
> "Brock Allen" wrote:
>
> > Why not? Check out the Bitmap class.
> >
> > -Brock
> > DevelopMentor
> > http://staff.develop.com/ballen
> >
> >
> >
> > > Hello -
> > >
> > > I have images saved in my SQL SERVER 2000 database. Using ASP.NET (C#)
> > > is there any way to temporarily save an image to a session object, and
> > > after running some other operations, later retrieve the image from the
> > > session object, convert it back to an image, and re-save it to the
> > > database?
> > >
> > > Thanks?
> > >
> >
> >
> >
> >

Nov 19 '05 #8
Hi Charlie,

Okay I thought I had explained that, must have missed it somewhere.
here is the code to retrieve the image from the database.
Assuming that the column in the database table is defined as Image [image]
NULL in the table "Table1".

---------------------------------------------------------------------------------------------
//Retrieve Image from database
string strCmd = String.Format("SELECT Image FROM Table1 WHERE id = '1'",
SqlCommand Sqlcmd = new SqlCommand(strCmd, sqlConn);

byte[] bytImg = (byte[])Sqlcmd.ExecuteScalar();

//Store retrieved image in session

Session.Add("RawData",bytImg)

//Creating memory stream with the raw image data
System.IO.MemoryStream MemStrm = new System.IO.MemoryStream(bytImg, true);
MemStrm .Write(bytImg, 0, bytImg.Length);

//creating bitmap with the memory stream
Bitmap bmp = new Bitmap(MemStrm);
MemStrm.close();

------------------------------------------------------------------------------------------------
Hope this helped.

Regarding your code, I think you are missing something.
Firstly you created a byte array "RawData" filled it with the contents of
the dataset, where the col name was Imagesize. ->Now why is the image size a
byte? and why is it stored in the database? (okay giving you that you need
the image size)
Secondly you created a memory stream from another col of the dataset which
seems to be the Image. ->the image if stored in the database (in bytes)
should be retrieved to the byte array and then put into a memory stream.
Next you have used the file stream to read the "Rawdata" which now contains
the Image Size. -> why do you need a file stream to read the byte array? also
the byte array contains the image size!
lastly you are storing the image size (RawData) in the session ->assuming
you need the file size in the session, so what happened to the image in byte
form which was to be stored in the session? and which was in the memory
stream?

I understand what you want, but your code seems wrong or probably I am
missing something.
anyway try the code I gave you.
--
--Vijay R
"charliewest" wrote:
Vijay,

First, i really appreciate your help sticking with this. I think i'm almost
there, but the examples i find (and that you provide) assume i pull the image
directly from the Web Form, and save the image to the Session State, and
then, pull the image from the session state. Where and how does the database
fit in?

I've been trying to do the following with zero luck:

byte[] RawData = new
byte[Convert.ToInt32(ds.Tables["Client"].Rows[0]["ImageSize"])];
MemoryStream stream = new MemoryStream(ds.Tables["Client"].Rows[0]["Image"],
FileMode.Open, FileAccess.Read);
Fs.Read(RawData, 0, Convert.ToInt32(Fs.Length));
Fs.Close();
Session["ImageByte"] = RawData;

And then....

Byte[] RawData = new byte[Convert.ToInt32(Session["ImageSize"].ToString())];
MemoryStream stream = new MemoryStream(RawData, true);
stream.Write(RawData, 0, RawData.Length);
Bitmap bmp = new Bitmap(stream);
stream.Close();

This is really going nowhere... i really am not catching how this conversion
between images, bytes and bitmaps is working....

If you could provide any insight on how the image is somehow saved to the a
session state var directly from the database, and how this is read from a
session state var... (which i think you've already provide in a former
response) that would be frankly amazing...

thanks,

"Vijay" wrote:
Hi Charlie,

I wanted to ask,
How is the bitmap stored in the database? as a Blob or in bytes?
if it is stored in bytes, then I feel that Blob/Image is the better option.

you can insert the byte array as I mentioned before in the Image field of
the database.
For retrieving and displaying the image, put the byte array into a stream
and then create a bitmap file from the stream.

----------------------------------------------------------------------
MemoryStream stream = new MemoryStream(RawData, true);
stream.Write(RawData, 0, RawData.Length);

Bitmap bmp = new Bitmap(stream);
stream.close();
---------------------------------------------------------------------

Hope this helped

++Vijay R
"Vijay" wrote:
Hi,

I think this should work just for converting the bitmap to a byte stream:
--------------------------------------------------------------------
FileStream Fs = new
FileStream(TextBox2.Text.Trim(),FileMode.Open,File Access.Read);
byte[] RawData = new byte[Fs.Length];

Fs.Read(RawData,0,Convert.ToInt32(Fs.Length));
Fs.Close();

Session.Add("FileData",RawData);
-------------------------------------------------------------------

Now assuming that the file format is always bmp, we have to work on
converting it back into bmp.
will work on this :-)

++Vijay R
"charliewest" wrote:

> Thanks Vijay,
>
> As simple as this might sound, it's taking me forever. Could you pls point
> me to some sample code?
>
> The sample code i find, requires that i know the size and file type of the
> image (bitmap) in the database, which i might not... I don't seem to find a
> sample which is as "simple" as your solution seems to imply.
>
> thanks
>
> "Vijay" wrote:
>
> > Hi,
> >
> > Why not covert the Image to Binary and then store it in session with the Img
> > format?
> > Is this a bad idea?
> >
> > ++Vijay R
> >
> >
> > "Brock Allen" wrote:
> >
> > > Why not? Check out the Bitmap class.
> > >
> > > -Brock
> > > DevelopMentor
> > > http://staff.develop.com/ballen
> > >
> > >
> > >
> > > > Hello -
> > > >
> > > > I have images saved in my SQL SERVER 2000 database. Using ASP.NET (C#)
> > > > is there any way to temporarily save an image to a session object, and
> > > > after running some other operations, later retrieve the image from the
> > > > session object, convert it back to an image, and re-save it to the
> > > > database?
> > > >
> > > > Thanks?
> > > >
> > >
> > >
> > >
> > >

Nov 19 '05 #9
Vijay,

First, thanks a ton for your help. This has not been fun i know. I've
managed to figure it out thanks to you. I don't know what i was trying to do
before so your comments are all well taken, but i've just followed what
you've suggested. There's still one thing i cannot do, but it's no longer an
issue: I can now pull the image from the db, and save to the session state,
as well as convert to a bitmap. But i still cannot pull the image from the
session state object and convert to bitmap. there's clearly something that
i'm missing... here's how my code that works looks:

//Retrieve Image from database
string strCmd = String.Format("SELECT Image FROM mClient WHERE (ClientId = "
+ Session["iClientId"].ToString() + ")");
using (SqlConnection cn = utils.GetConnection())
{
cn.Open();
SqlCommand Sqlcmd = new SqlCommand(strCmd, cn);
byte[] bytImg = (byte[])Sqlcmd.ExecuteScalar();

//Creating memory stream with the raw image data
System.IO.MemoryStream MemStrm = new System.IO.MemoryStream(bytImg, true);
MemStrm.Write(bytImg, 0, bytImg.Length);

//creating bitmap with the memory stream
Bitmap bmp = new Bitmap(MemStrm);
MemStrm.Close();

myData = bytImg;

cn.Close();
}

Thanks agian!

"Vijay" wrote:
Hi Charlie,

Okay I thought I had explained that, must have missed it somewhere.
here is the code to retrieve the image from the database.
Assuming that the column in the database table is defined as Image [image]
NULL in the table "Table1".

---------------------------------------------------------------------------------------------
//Retrieve Image from database
string strCmd = String.Format("SELECT Image FROM Table1 WHERE id = '1'",
SqlCommand Sqlcmd = new SqlCommand(strCmd, sqlConn);

byte[] bytImg = (byte[])Sqlcmd.ExecuteScalar();

//Store retrieved image in session

Session.Add("RawData",bytImg)

//Creating memory stream with the raw image data
System.IO.MemoryStream MemStrm = new System.IO.MemoryStream(bytImg, true);
MemStrm .Write(bytImg, 0, bytImg.Length);

//creating bitmap with the memory stream
Bitmap bmp = new Bitmap(MemStrm);
MemStrm.close();

------------------------------------------------------------------------------------------------
Hope this helped.

Regarding your code, I think you are missing something.
Firstly you created a byte array "RawData" filled it with the contents of
the dataset, where the col name was Imagesize. ->Now why is the image size a
byte? and why is it stored in the database? (okay giving you that you need
the image size)
Secondly you created a memory stream from another col of the dataset which
seems to be the Image. ->the image if stored in the database (in bytes)
should be retrieved to the byte array and then put into a memory stream.
Next you have used the file stream to read the "Rawdata" which now contains
the Image Size. -> why do you need a file stream to read the byte array? also
the byte array contains the image size!
lastly you are storing the image size (RawData) in the session ->assuming
you need the file size in the session, so what happened to the image in byte
form which was to be stored in the session? and which was in the memory
stream?

I understand what you want, but your code seems wrong or probably I am
missing something.
anyway try the code I gave you.
--
--Vijay R
"charliewest" wrote:
Vijay,

First, i really appreciate your help sticking with this. I think i'm almost
there, but the examples i find (and that you provide) assume i pull the image
directly from the Web Form, and save the image to the Session State, and
then, pull the image from the session state. Where and how does the database
fit in?

I've been trying to do the following with zero luck:

byte[] RawData = new
byte[Convert.ToInt32(ds.Tables["Client"].Rows[0]["ImageSize"])];
MemoryStream stream = new MemoryStream(ds.Tables["Client"].Rows[0]["Image"],
FileMode.Open, FileAccess.Read);
Fs.Read(RawData, 0, Convert.ToInt32(Fs.Length));
Fs.Close();
Session["ImageByte"] = RawData;

And then....

Byte[] RawData = new byte[Convert.ToInt32(Session["ImageSize"].ToString())];
MemoryStream stream = new MemoryStream(RawData, true);
stream.Write(RawData, 0, RawData.Length);
Bitmap bmp = new Bitmap(stream);
stream.Close();

This is really going nowhere... i really am not catching how this conversion
between images, bytes and bitmaps is working....

If you could provide any insight on how the image is somehow saved to the a
session state var directly from the database, and how this is read from a
session state var... (which i think you've already provide in a former
response) that would be frankly amazing...

thanks,

"Vijay" wrote:
Hi Charlie,

I wanted to ask,
How is the bitmap stored in the database? as a Blob or in bytes?
if it is stored in bytes, then I feel that Blob/Image is the better option.

you can insert the byte array as I mentioned before in the Image field of
the database.
For retrieving and displaying the image, put the byte array into a stream
and then create a bitmap file from the stream.

----------------------------------------------------------------------
MemoryStream stream = new MemoryStream(RawData, true);
stream.Write(RawData, 0, RawData.Length);

Bitmap bmp = new Bitmap(stream);
stream.close();
---------------------------------------------------------------------

Hope this helped

++Vijay R
"Vijay" wrote:

> Hi,
>
> I think this should work just for converting the bitmap to a byte stream:
> --------------------------------------------------------------------
> FileStream Fs = new
> FileStream(TextBox2.Text.Trim(),FileMode.Open,File Access.Read);
> byte[] RawData = new byte[Fs.Length];
>
> Fs.Read(RawData,0,Convert.ToInt32(Fs.Length));
> Fs.Close();
>
> Session.Add("FileData",RawData);
> -------------------------------------------------------------------
>
> Now assuming that the file format is always bmp, we have to work on
> converting it back into bmp.
> will work on this :-)
>
> ++Vijay R
>
>
> "charliewest" wrote:
>
> > Thanks Vijay,
> >
> > As simple as this might sound, it's taking me forever. Could you pls point
> > me to some sample code?
> >
> > The sample code i find, requires that i know the size and file type of the
> > image (bitmap) in the database, which i might not... I don't seem to find a
> > sample which is as "simple" as your solution seems to imply.
> >
> > thanks
> >
> > "Vijay" wrote:
> >
> > > Hi,
> > >
> > > Why not covert the Image to Binary and then store it in session with the Img
> > > format?
> > > Is this a bad idea?
> > >
> > > ++Vijay R
> > >
> > >
> > > "Brock Allen" wrote:
> > >
> > > > Why not? Check out the Bitmap class.
> > > >
> > > > -Brock
> > > > DevelopMentor
> > > > http://staff.develop.com/ballen
> > > >
> > > >
> > > >
> > > > > Hello -
> > > > >
> > > > > I have images saved in my SQL SERVER 2000 database. Using ASP.NET (C#)
> > > > > is there any way to temporarily save an image to a session object, and
> > > > > after running some other operations, later retrieve the image from the
> > > > > session object, convert it back to an image, and re-save it to the
> > > > > database?
> > > > >
> > > > > Thanks?
> > > > >
> > > >
> > > >
> > > >
> > > >

Nov 19 '05 #10

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

Similar topics

4
by: John Q. Smith | last post by:
I'm trying to find out some of the details behind OOP state management with SQL Server. For instance - how long does the session object live on any server? Is it created and destoyed with each...
6
by: Vik | last post by:
A dataset is saved in session state. Then the dataset is filled out with the new records using a dataadapter. It appears then that the dataset saved in session state contains the new records even...
0
by: Sebastian | last post by:
Hello, I've implemented an ASP.NET Application that is used by many people concurrently. Each user logs on using Forms Authentication (authentication against Active Directory). After logon...
2
by: John A Grandy | last post by:
for high traffic public websites , what are the proven options for session-state storage & management ? is an out-of-process state-server generally preferred over a sql-server ? what are the...
1
by: Johan Nedin | last post by:
Hello! I have a problem with SQLSession state on my ASP.NET pages. SQLSession state behaves very different from InProcess session state, which I think is very bad. I can understand some of...
4
by: Jake | last post by:
Does cookieless session state (with the sessionid embedded into the url) interfere with the browser's retrieval of cached images from one session to the next? Does the sessionid embedded into the...
5
by: Sean | last post by:
Problem with sessions I have created an application without concern for sessions. As it turns out I think that might be my undoing. What I have: I have an online quiz. I don’t need to know...
4
by: SteveSu | last post by:
Hi! I have a few question regarding sql session state. Is the database hited only ones when the session is created and then no database hit until session expires or is there a database hit every...
3
by: Michael | last post by:
Hi, If I use SQL Server to store session state, whenever I call Session is there a call to SQL Server? Even if I call Session a few times in the same Web page, or even the same code block? ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
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: 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
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...
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...
0
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...

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.