473,915 Members | 3,941 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

asp.net chinese encoding

Hello all,

I am having a few issues with encoding to chinese characters and
perhaps someone might be able to assist.

At the moment I am only able to see chinese characters when displayed
as part of a datagrid. When an input textbox is displayed it does not
display chinese characters, but rather the unicode characters stored
in the mssql 2000 server backend.

To get this setting to work I have the following web.config file
setting:
<globalizatio n requestEncoding ="utf-8" responseEncodin g="utf-8"
fileEncoding="u tf-8" culture="zh-CN"/>
and on page load I programatically set the following:
Response.Charse t = "gb2312";
these are the settings I use to get the above results.

I have tried setting the web.config to:
<globalizatio n requestEncoding ="gb2312" responseEncodin g="gb2312"
fileEncoding="g b2312" culture="zh-CN"/>
but this provides little help.

Additionally I have used some of the suggestions in the following post
http://www.asp.net/Forums/ShowPost.a...&PostID=518209
by overriding the TextBox Text property where in set I do the
following:
set
{
base.Text = ToSCUnicode(val ue);
}
which can display correct chinese characters on the initial page load,
however, when this page performs a post-back these chinese characters
are converted back to I assume unicode (could be wrong.)

I am hoping someone may have some experience/suggestions to lead me on
to the right track to solve this problem, any feedback would be
appreciated.

Thanks
Nov 16 '05 #1
8 12011
pabv <pa***********@ gmail.com> wrote:
I am having a few issues with encoding to chinese characters and
perhaps someone might be able to assist.

At the moment I am only able to see chinese characters when displayed
as part of a datagrid. When an input textbox is displayed it does not
display chinese characters, but rather the unicode characters stored
in the mssql 2000 server backend.


What *exactly* do you mean by this? All the Chinese characters *are*
Unicode characters.

I suspect you may find that this is a limitation in the browser's
handling of textboxes more than anything else. Have you tried it in
multiple browsers? Have you looked to see exactly what's being sent
back (as opposed to what the browser's displaying).

--
Jon Skeet - <sk***@pobox.co m>
http://www.pobox.com/~skeet
If replying to the group, please do not mail me too
Nov 16 '05 #2
Jon,

I am using Internet Explorer.

What I am meant is that when the data is displayed on a data grid, the
unicode characters retrieved from the mssql backend are converted via
the codepage to chinese symbols.

In this example the html page source text has the following
ÖйúʯÓÍÎÚÂ³Ä¾Æ ëʯ»¯·Ö¹«?Р...etc (Note: this actually came via
access to the databinder.eval function, what I mean is not set via any
html server control as below) This correctly displays chinese symbols
on the browser.

However, when an textbox control is displayed the html page source
text has the following ÖйúÊ ...etc. On the
browser this displays the html equivalent of
ÖйúÊ ...etc which is
ÖйúʯÓÍÎÚÂ³Ä¾Æ ëʯ»¯·Ö¹«?Р...etc (I believe this is the correct
process)

I checked what was being sent back from mssql by both the steps I
mentioned above and it is the following ÖйúʯÓÍÎÚÂ³Ä¾Æ ëʯ»¯·Ö¹«?ÐÂ
Which matches the values stored in the mssql backend, this unicode is
then transformed into the chinese symbols via the codepage.

I understand that I am may not have used all the correct terminology
in my explanation, if I am incorrect/un-clear on anything please let
me know, as any help would be useful to solve this problem.

Thanks again

Jon Skeet [C# MVP] <sk***@pobox.co m> wrote in message news:<MP******* *************** **@msnews.micro soft.com>...
pabv <pa***********@ gmail.com> wrote:
I am having a few issues with encoding to chinese characters and
perhaps someone might be able to assist.

At the moment I am only able to see chinese characters when displayed
as part of a datagrid. When an input textbox is displayed it does not
display chinese characters, but rather the unicode characters stored
in the mssql 2000 server backend.


What *exactly* do you mean by this? All the Chinese characters *are*
Unicode characters.

I suspect you may find that this is a limitation in the browser's
handling of textboxes more than anything else. Have you tried it in
multiple browsers? Have you looked to see exactly what's being sent
back (as opposed to what the browser's displaying).

Nov 16 '05 #3
pabv <pa***********@ gmail.com> wrote:
I am using Internet Explorer.

What I am meant is that when the data is displayed on a data grid, the
unicode characters retrieved from the mssql backend are converted via
the codepage to chinese symbols.

In this example the html page source text has the following
ÖйúʯÓÍÎÚÂ³Ä¾Æ ëʯ»¯·Ö¹«?Р...etc
Unfortunately including characters like that doesn't help much in a
post - the HTML source just has *bytes*, and an encoding associated
with it, which may well not be the one you used to look at the HTML
source, and is almost certainly not the one your newsreader or mine
uses.
(Note: this actually came via
access to the databinder.eval function, what I mean is not set via any
html server control as below) This correctly displays chinese symbols
on the browser.

However, when an textbox control is displayed the html page source
text has the following ÖйúÊ ...etc. On the
browser this displays the html equivalent of
ÖйúÊ ...etc which is
ÖйúʯÓÍÎÚÂ³Ä¾Æ ëʯ»¯·Ö¹«?Р...etc (I believe this is the correct
process)

I checked what was being sent back from mssql by both the steps I
mentioned above and it is the following ÖйúʯÓÍÎÚÂ³Ä¾Æ ëʯ»¯·Ö¹«?ÐÂ
Which matches the values stored in the mssql backend, this unicode is
then transformed into the chinese symbols via the codepage.

I understand that I am may not have used all the correct terminology
in my explanation, if I am incorrect/un-clear on anything please let
me know, as any help would be useful to solve this problem.


It sounds like you're not sending back the correct content encoding
with the web page.

Have a look at http://www.pobox.com/~skeet/csharp/d...ngunicode.html
for the next step - you need to break the connection between SQL and
your web page, so you can check where things are going wrong.

--
Jon Skeet - <sk***@pobox.co m>
http://www.pobox.com/~skeet
If replying to the group, please do not mail me too
Nov 16 '05 #4
I think I have made some progress in finding the error to this
problem.

I realised that the error seemed to be happening with the asp.net
textbox control. I than investigated further and realised the error
where the chinese character symbols are not being displayed correctly
on the browser occurs with multiline textbox.

Multiline textbox (texbox with TextMode = TextBoxMode.Mul tiLine) are
rendered on the browser by asp.net as a textarea. This results in
unicode characters (ie. characters not translated by the codepage
encoding process) being displayed on both page-load and any subsequent
page-postbacks before final page submission to have data saved to the
mssql backend.

So I populated a singleline textbox, and on the browser and it
displayed the chinese character symbols correctly. This results in
both page-load and page-postbacks displaying the chinese character
symbols correctly.

Hence, it seems to occur when I populate a multiline textbox that it
is rendered as a textarea in html.

I went a step further and this time I created a html server textarea
control (HtmlTextArea). I populated the control, and on page-load the
chinese character symbols are displayed correctly on the browser.
However, when I change the text inside the htmltextarea control, on
page-postback the chinese characters symbols are no longer displayed
correctly.

So one question I have is what encodings/processes are occurring on
page-postbacks that is causing the htmltextarea control to have this
issue? And most importantly why is the multiline textbox not
displaying chinese character symbols correctly when the htmltextarea
control partially is?

I will investigate further. Perhaps you or others may have some ideas
as to whether this has any importance to the issue.

I will also take your suggestion and follow the steps in your
debugging unicode page.

Thanks again.

Jon Skeet [C# MVP] <sk***@pobox.co m> wrote in message news:<MP******* *************** *@msnews.micros oft.com>...
pabv <pa***********@ gmail.com> wrote:
I am using Internet Explorer.

What I am meant is that when the data is displayed on a data grid, the
unicode characters retrieved from the mssql backend are converted via
the codepage to chinese symbols.

In this example the html page source text has the following
? ? ³? ? ? ?

...etc

Unfortunately including characters like that doesn't help much in a
post - the HTML source just has *bytes*, and an encoding associated
with it, which may well not be the one you used to look at the HTML
source, and is almost certainly not the one your newsreader or mine
uses.
(Note: this actually came via
access to the databinder.eval function, what I mean is not set via any
html server control as below) This correctly displays chinese symbols
on the browser.

However, when an textbox control is displayed the html page source
text has the following ÖйúÊ ...etc. On the
browser this displays the html equivalent of
ÖйúÊ ...etc which is
? ? ³? ? ? ?

...etc (I believe this is the correct
process)

I checked what was being sent back from mssql by both the steps I
mentioned above and it is the following ? ?

? ? ? ?
Which matches the values stored in the mssql backend, this unicode is
then transformed into the chinese symbols via the codepage.

I understand that I am may not have used all the correct terminology
in my explanation, if I am incorrect/un-clear on anything please let
me know, as any help would be useful to solve this problem.


It sounds like you're not sending back the correct content encoding
with the web page.

Have a look at http://www.pobox.com/~skeet/csharp/d...ngunicode.html
for the next step - you need to break the connection between SQL and
your web page, so you can check where things are going wrong.

Nov 16 '05 #5
Hi,

I realised (finally !) that I am connecting to a mssql backend with
collation 1252.
So I have updated my configuration file to the following:

<globalizatio n requestEncoding ="windows-1252"
responseEncodin g="windows-1252"
fileEncoding="w indows-1252"
culture="zh-CN"/>
Also on page load I set programatically the following:

Response.Charse t = "gb2312";

This will allow datagrid, textboxes to correctly display chinese
symbol characters on the browser. On the html source file, the text
written to the file is as codepage 1252 characters, which I then
assume if rendered correctly by the browser as I have set the charset
above.
These values are retrieved from the database correctly, and on
page-load, post-backs and saving to the database all is fine.

However, when displaying converted date strings to the browser i am
getting some strange results. When I convert a date (using the
cultures DateTimeFormat patterns) to be displayed with month
abbreviation to the browser for
example with english culture these may be the result 'Jan 2004'.
When the page is displayed with the zh-CH (simplied chinese) culture
it displays '?? 2004', that is the chinese symbols for the abbreviated
month
are not rendered on the browser correctly. In the html source file,
the text written on the file is also showing '??'.

However, when I remove the previous command

Response.Charse t = "gb2312";

and replace it with

Session.CodePag e = 936;

the displaying of the formatted date string is correct with the month
abbreviation showing the corresponding chinese character symbols.
The html source file, the text written to the file is as codepage 1252
characters, which I then assume if rendered correctly by the browser
as I
have set the codepage above. However, this now makes the previous
datagrids and textboxes not show the corresponding chinese character
symbols.

I when I set both the
Response.Charse t = "gb2312";
Session.CodePag e = 936;

this does not give the desired results. Why can't I set both of these
values together at the same time to make it work?

I had a look at the data being returned from the mssql backend and its
fine.

I performed the steps detailed in
http://www.pobox.com/~skeet/csharp/d...ngunicode.html and I used
the returned hex values below. As the data is stored as windows-1252,
I then used the double-byte code page conversions
(http://www.microsoft.com/globaldev/reference/WinCP.mspx) to see if
the displayed chinese symbols on the browser correspond to the
database values and they match.

I am a little confused as to what is happening, perhaps someone has
some ideas.

Thanks.
pa***********@g mail.com (pabv) wrote in message news:<da******* *************** ***@posting.goo gle.com>...
I think I have made some progress in finding the error to this
problem.

I realised that the error seemed to be happening with the asp.net
textbox control. I than investigated further and realised the error
where the chinese character symbols are not being displayed correctly
on the browser occurs with multiline textbox.

Multiline textbox (texbox with TextMode = TextBoxMode.Mul tiLine) are
rendered on the browser by asp.net as a textarea. This results in
unicode characters (ie. characters not translated by the codepage
encoding process) being displayed on both page-load and any subsequent
page-postbacks before final page submission to have data saved to the
mssql backend.

So I populated a singleline textbox, and on the browser and it
displayed the chinese character symbols correctly. This results in
both page-load and page-postbacks displaying the chinese character
symbols correctly.

Hence, it seems to occur when I populate a multiline textbox that it
is rendered as a textarea in html.

I went a step further and this time I created a html server textarea
control (HtmlTextArea). I populated the control, and on page-load the
chinese character symbols are displayed correctly on the browser.
However, when I change the text inside the htmltextarea control, on
page-postback the chinese characters symbols are no longer displayed
correctly.

So one question I have is what encodings/processes are occurring on
page-postbacks that is causing the htmltextarea control to have this
issue? And most importantly why is the multiline textbox not
displaying chinese character symbols correctly when the htmltextarea
control partially is?

I will investigate further. Perhaps you or others may have some ideas
as to whether this has any importance to the issue.

I will also take your suggestion and follow the steps in your
debugging unicode page.

Thanks again.

Nov 16 '05 #6
pabv <pa***********@ gmail.com> wrote:
I realised (finally !) that I am connecting to a mssql backend with
collation 1252.
Hmm... I don't know details about what the collation does, but it can't
be restricting it to CP 1252, otherwise you wouldn't have any Chinese
characters at all.
So I have updated my configuration file to the following:

<globalizatio n requestEncoding ="windows-1252"
responseEncodin g="windows-1252"
fileEncoding="w indows-1252"
culture="zh-CN"/>
Also on page load I set programatically the following:

Response.Charse t = "gb2312";

This will allow datagrid, textboxes to correctly display chinese
symbol characters on the browser. On the html source file, the text
written to the file is as codepage 1252 characters
Written to which file?
which I then assume if rendered correctly by the browser as I have
set the charset above. These values are retrieved from the database
correctly, and on page-load, post-backs and saving to the database
all is fine.
The trouble is, there are far too many things going on here. There are
lots of steps in the pipeline, and you need to work out what's
happening at each individual stage. Check that you're getting the
correct data to start with, then use a network analyser (or something
similar) to find out *exactly* what response your ASP.NET page is
giving.

Certainly mixing two character encodings in the same response is a bad
idea, IMO.

<snip>
However, when displaying converted date strings to the
I performed the steps detailed in
http://www.pobox.com/~skeet/csharp/d...ngunicode.html and I used
the returned hex values below. As the data is stored as windows-1252,
I then used the double-byte code page conversions
(http://www.microsoft.com/globaldev/reference/WinCP.mspx) to see if
the displayed chinese symbols on the browser correspond to the
database values and they match.


I don't think the data is actually stored as Windows-1252, as otherwise
you wouldn't be able to get any Chinese characters at all.

If you can make sure that you're getting the correct data back from the
database as Unicode characters, you can then ignore the database
character set entirely, and concentrate just on the ASP.NET part,
without even using a database.

--
Jon Skeet - <sk***@pobox.co m>
http://www.pobox.com/~skeet
If replying to the group, please do not mail me too
Nov 16 '05 #7
Jon Skeet [C# MVP] <sk***@pobox.co m> wrote in message news:<MP******* *************** **@msnews.micro soft.com>...
pabv <pa***********@ gmail.com> wrote:
I realised (finally !) that I am connecting to a mssql backend with
collation 1252.
Hmm... I don't know details about what the collation does, but it can't
be restricting it to CP 1252, otherwise you wouldn't have any Chinese
characters at all.


I use collation 1252 (SQL_Latin1_Gen eral_CP1_CI_AS) . I think
collations specifies the character set and sort-order used by mssql
server.

I may be incorrect but from my understanding the collation does
restrict the characters stored in mssql to be codepage 1252.

As a small example, for two characters stored in the database at the
moment it stores the codepage 1252 symbols for U+00D5 (D5 = U+00D5 :
LATIN CAPITAL LETTER O WITH TILDE) and U+00CA (CA = U+00CA : LATIN
CAPITAL LETTER E WITH CIRCUMFLEX) which for reference can be seen at
http://www.microsoft.com/globaldev/r.../sbcs/1252.htm

Then to render the chinese characters on to the browser, by sending
the charset gb2312 the browser does a codepage lookup of codepage 936.
Combining the two characters above it displays the chinese symbol
(D5CA = U+5E10 : CJK UNIFIED IDEOGRAPH) which can be seen at
http://www.microsoft.com/globaldev/r...936/936_D5.htm
This is what I understand the process to be. Is this correct? Perhaps
you may be able to correct me if I have mis-understood this process of
displaying the chinese characters onto the browser.
So I have updated my configuration file to the following:

<globalizatio n requestEncoding ="windows-1252"
responseEncodin g="windows-1252"
fileEncoding="w indows-1252"
culture="zh-CN"/>
Also on page load I set programatically the following:

Response.Charse t = "gb2312";

This will allow datagrid, textboxes to correctly display chinese
symbol characters on the browser. On the html source file, the text
written to the file is as codepage 1252 characters
Written to which file?


Sorry, I meant the html source file, the current web page I am
viewing. The html file has codepage 1252 characters and the browser
then displays the correct chinese symbol characters.
which I then assume if rendered correctly by the browser as I have
set the charset above. These values are retrieved from the database
correctly, and on page-load, post-backs and saving to the database
all is fine.
The trouble is, there are far too many things going on here. There are
lots of steps in the pipeline, and you need to work out what's
happening at each individual stage. Check that you're getting the
correct data to start with, then use a network analyser (or something
similar) to find out *exactly* what response your ASP.NET page is
giving.

Certainly mixing two character encodings in the same response is a bad
idea, IMO.

<snip>


I am not un-sure as to what I can do. The mssql backend is codepage
1252, but the characters should be displayed using codepage 936. I
need to store both english and chinese characters for the site.

However, when displaying converted date strings to the
I performed the steps detailed in http://www.pobox.com/~skeet/csharp/d...ngunicode.html and I used
the returned hex values below. As the data is stored as windows-1252,
I then used the double-byte code page conversions
(http://www.microsoft.com/globaldev/reference/WinCP.mspx) to see if
the displayed chinese symbols on the browser correspond to the
database values and they match.


I don't think the data is actually stored as Windows-1252, as otherwise
you wouldn't be able to get any Chinese characters at all.

If you can make sure that you're getting the correct data back from the
database as Unicode characters, you can then ignore the database
character set entirely, and concentrate just on the ASP.NET part,
without even using a database.


What should the data actually be stored as? Should it be storing as
code 936? Should the chinese symbol characters be stored in the db?

The site needs to display both english and chinese characters.

Thanks again for your help/suggestions as I have spent a while looking
into the matter.
Nov 16 '05 #8
pabv <pa***********@ gmail.com> wrote:
pabv <pa***********@ gmail.com> wrote:
I realised (finally !) that I am connecting to a mssql backend with
collation 1252.
Hmm... I don't know details about what the collation does, but it can't
be restricting it to CP 1252, otherwise you wouldn't have any Chinese
characters at all.


I use collation 1252 (SQL_Latin1_Gen eral_CP1_CI_AS) . I think
collations specifies the character set and sort-order used by mssql
server.

I may be incorrect but from my understanding the collation does
restrict the characters stored in mssql to be codepage 1252.

As a small example, for two characters stored in the database at the
moment it stores the codepage 1252 symbols for U+00D5 (D5 = U+00D5 :
LATIN CAPITAL LETTER O WITH TILDE) and U+00CA (CA = U+00CA : LATIN
CAPITAL LETTER E WITH CIRCUMFLEX) which for reference can be seen at
http://www.microsoft.com/globaldev/r.../sbcs/1252.htm


If it can only store those characters, then it can't possibly store any
Chinese characters, can it?
Then to render the chinese characters on to the browser, by sending
the charset gb2312 the browser does a codepage lookup of codepage 936.
Combining the two characters above it displays the chinese symbol
(D5CA = U+5E10 : CJK UNIFIED IDEOGRAPH) which can be seen at
http://www.microsoft.com/globaldev/r...936/936_D5.htm
No - you don't combine two CP-1252 characters to get a double-byte
character - you combine two *bytes*.
This is what I understand the process to be. Is this correct? Perhaps
you may be able to correct me if I have mis-understood this process of
displaying the chinese characters onto the browser.
You still need to separate the database element from the browser
element. You haven't worked out for sure (as far as I've seen) whether
the database is the problem, or the browser. When you've eliminated one
of them, it doesn't need to appear again.
This will allow datagrid, textboxes to correctly display chinese
symbol characters on the browser. On the html source file, the text
written to the file is as codepage 1252 characters


Written to which file?


Sorry, I meant the html source file, the current web page I am
viewing. The html file has codepage 1252 characters and the browser
then displays the correct chinese symbol characters.


The file has *bytes* in, and the browser is being told to interpret
those bytes as GB2312. The idea of displaying one character as if it
were in a different character set is to the actual one is a really bad
one.
I am not un-sure as to what I can do. The mssql backend is codepage
1252, but the characters should be displayed using codepage 936. I
need to store both english and chinese characters for the site.


So for output, I'd suggest UTF-8, as that covers the whole of Unicode.
However, you need to work out what's actually in the database to start
with. If it's only meant to be storing CP1252 characters, but you want
it to store GB2312 characters, you need to work out exactly how you're
expecting that to happen.
If you can make sure that you're getting the correct data back from the
database as Unicode characters, you can then ignore the database
character set entirely, and concentrate just on the ASP.NET part,
without even using a database.


What should the data actually be stored as? Should it be storing as
code 936? Should the chinese symbol characters be stored in the db?


So long as you've got the database in a mode where it *can* store those
characters, it shouldn't matter *how* it stores them. Set it up so it
can store any Unicode character, and it should be fine. You just read
and write strings, and they don't have encodings associated with them.

--
Jon Skeet - <sk***@pobox.co m>
http://www.pobox.com/~skeet
If replying to the group, please do not mail me too
Nov 16 '05 #9

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

Similar topics

1
2995
by: Anthony Liu | last post by:
The following 4 lines of code parses an XML document very well if the XML document contains only English words. But when I insert one Chinese character into the XML document, then Python starts to complain when it hits the Chinese character, saying that it is an invalid token and thus it is not well-formed. This is the complaint of Python:
4
6541
by: Knackeback | last post by:
Hi, I wrote a XML file with GNU emacs 21.2.2 and with chinese character content encoded in UTF-8. I wrote something like: <?xml version="1.0" encoding="UTF-8"?> <test> <chinese>¼»</chinese> <chinese>ÄÎ</chinese> </test>
1
2162
by: Antonio | last post by:
With the following page aspx I try to translate one my page from English to Chinese, using UTF8, the result Is that the Chinese characters do not come read correctly, if instead I insert directly the address http://babelfish.altavista.com/babelfish/trurl_pagecontent?url=http://www.etantonio.it/en/index.aspx&lp=en_zh into the browser the page he comes shown correctly in Chinese, if i save it and put it in my site and with the same below...
1
2371
by: Anthony Liu | last post by:
I believe that topic related to Chinese processing was discussed before. I could not dig out the info I want from the mail list archive. My Python script reads some Chinese text and then split a line delimited by white spaces. I got lists like
8
3493
by: Agnes | last post by:
In my .net ,i need to generate an xml file , however, user may input a chinese character, Then , the xml will got something unknow characters. the following is my code, Does anyone know how to solve it ?? Private Sub Init() With AMSXML ..Formatting = Formatting.Indented ..Indentation = 4 ..IndentChar = " " ..WriteStartDocument()
0
724
by: Alex Chan | last post by:
Hi group, I am writing a RFC Server with SAP.NET Connector to connect to SAP. There are chinese characters passing back and forth. I found that all chinese characters sending from SAP are encoded with UTF-7. In order to let SAP display chinese characters correctly, i also need to encode my chinese data by UTF-7. However, i need to convert the UTF-7 encoded SAP data back to chinese
3
3771
by: kaede | last post by:
Hi all, I am new to C# and currently writing a Nntp client to read article from a chinese newsgroup. I am curious how to decode the chinese character using streamreader and display it properly on Win2K and WinXP? I have tried the following: // send XOVER commands to get the header XOVER 1234-1234
7
4318
by: c.verma | last post by:
I have a web application. There is a page which has a datagrid on it.The datagrid displays the data that comes from SAP. SAP sends the chinese characters to this grid. Before I display CHinese charactes, I have to use the following code to let it display on the web page: Public Function ToSCUnicode(ByVal str As String) As String Dim enc1252 As System.Text.Encoding = System.Text.Encoding.GetEncoding(1252) Dim arrByte_GBK As Byte() Dim...
6
7614
by: Steve | last post by:
Hi. I need to store chinese characters and Pinyins in a mysql database and then read them from php and using the GD library and imagettftext() function to create an image based on a chinese ttf font of the chinese characters. I have tried setting the encoding in the database as UTF-8 and BIG5 but the characters display (both in MYSQL and when displayed via PHP) as question marks. Can anyone help?
0
10039
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, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9883
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
11359
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...
1
11069
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
10543
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...
1
8102
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
7259
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();...
2
4346
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
3370
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.