473,473 Members | 1,672 Online
Bytes | Software Development & Data Engineering Community
Create Post

Home Posts Topics Members FAQ

Invalid ViewState Problems

I seem to be getting this error message all of a sudden on one of my web apps:

[HttpException (0x80004005): Unable to validate data.]
System.Web.Configuration.MachineKey.GetDecodedData (Byte[] buf, Byte[]
modifier, Int32 start, Int32 length, Int32& dataLength) +195
System.Web.UI.LosFormatter.Deserialize(String input) +60

[HttpException (0x80004005): Authentication of viewstate failed. 1) If this
is a cluster, edit <machineKeyconfiguration so all servers use the same
validationKey and validation algorithm. AutoGenerate cannot be used in a
cluster. 2) Viewstate can only be posted back to the same page. 3) The
viewstate for this page might be corrupted.]
System.Web.UI.LosFormatter.Deserialize(String input) +117
System.Web.UI.Page.LoadPageStateFromPersistenceMed ium() +102

[HttpException (0x80004005): Invalid_Viewstate
And it goes on to explain about the page. On one development machine this
works and then on mine this doesn't. Any ideas why this would suddenly start
happening?
Jun 11 '07 #1
11 8668
Hi Giles,
There are 2 things you need to make sure of.
1 . If these machines are part of a webfarm make sure all web.config
validationKey,
decryptionKey have the same value across all machines.
2. All objects you place in viewstate are serializable.

Thanks,
Aris

"Giles Papworth" wrote:
I seem to be getting this error message all of a sudden on one of my web apps:

[HttpException (0x80004005): Unable to validate data.]
System.Web.Configuration.MachineKey.GetDecodedData (Byte[] buf, Byte[]
modifier, Int32 start, Int32 length, Int32& dataLength) +195
System.Web.UI.LosFormatter.Deserialize(String input) +60

[HttpException (0x80004005): Authentication of viewstate failed. 1) If this
is a cluster, edit <machineKeyconfiguration so all servers use the same
validationKey and validation algorithm. AutoGenerate cannot be used in a
cluster. 2) Viewstate can only be posted back to the same page. 3) The
viewstate for this page might be corrupted.]
System.Web.UI.LosFormatter.Deserialize(String input) +117
System.Web.UI.Page.LoadPageStateFromPersistenceMed ium() +102

[HttpException (0x80004005): Invalid_Viewstate
And it goes on to explain about the page. On one development machine this
works and then on mine this doesn't. Any ideas why this would suddenly start
happening?
Jun 11 '07 #2
Hi Aris,

These machines are definatly not part of a web farm and the objects are
definatly serializable.
I have changed my machine config to make sure that isn't causing the problem
however if i do that, the viewstate problem goes away and another appears.
Strangly enough it is only this one web app. All the others seem to work fine.

"Aris Houbavlis" wrote:
Hi Giles,
There are 2 things you need to make sure of.
1 . If these machines are part of a webfarm make sure all web.config
validationKey,
decryptionKey have the same value across all machines.
2. All objects you place in viewstate are serializable.

Thanks,
Aris

"Giles Papworth" wrote:
I seem to be getting this error message all of a sudden on one of my web apps:

[HttpException (0x80004005): Unable to validate data.]
System.Web.Configuration.MachineKey.GetDecodedData (Byte[] buf, Byte[]
modifier, Int32 start, Int32 length, Int32& dataLength) +195
System.Web.UI.LosFormatter.Deserialize(String input) +60

[HttpException (0x80004005): Authentication of viewstate failed. 1) If this
is a cluster, edit <machineKeyconfiguration so all servers use the same
validationKey and validation algorithm. AutoGenerate cannot be used in a
cluster. 2) Viewstate can only be posted back to the same page. 3) The
viewstate for this page might be corrupted.]
System.Web.UI.LosFormatter.Deserialize(String input) +117
System.Web.UI.Page.LoadPageStateFromPersistenceMed ium() +102

[HttpException (0x80004005): Invalid_Viewstate
And it goes on to explain about the page. On one development machine this
works and then on mine this doesn't. Any ideas why this would suddenly start
happening?
Jun 11 '07 #3
Also i have now changed my machine key and that seems to have resolved that
problem but now the session seems to be ending everytime i have posted data
to another page.

"Aris Houbavlis" wrote:
Hi Giles,
There are 2 things you need to make sure of.
1 . If these machines are part of a webfarm make sure all web.config
validationKey,
decryptionKey have the same value across all machines.
2. All objects you place in viewstate are serializable.

Thanks,
Aris

"Giles Papworth" wrote:
I seem to be getting this error message all of a sudden on one of my web apps:

[HttpException (0x80004005): Unable to validate data.]
System.Web.Configuration.MachineKey.GetDecodedData (Byte[] buf, Byte[]
modifier, Int32 start, Int32 length, Int32& dataLength) +195
System.Web.UI.LosFormatter.Deserialize(String input) +60

[HttpException (0x80004005): Authentication of viewstate failed. 1) If this
is a cluster, edit <machineKeyconfiguration so all servers use the same
validationKey and validation algorithm. AutoGenerate cannot be used in a
cluster. 2) Viewstate can only be posted back to the same page. 3) The
viewstate for this page might be corrupted.]
System.Web.UI.LosFormatter.Deserialize(String input) +117
System.Web.UI.Page.LoadPageStateFromPersistenceMed ium() +102

[HttpException (0x80004005): Invalid_Viewstate
And it goes on to explain about the page. On one development machine this
works and then on mine this doesn't. Any ideas why this would suddenly start
happening?
Jun 12 '07 #4
Hi Giles,
Try adding this in your web.config
<pages buffer="true" enableSessionState="true" enableViewState="true"
enableViewStateMac="false" />

Aris

"Giles Papworth" wrote:
Also i have now changed my machine key and that seems to have resolved that
problem but now the session seems to be ending everytime i have posted data
to another page.

"Aris Houbavlis" wrote:
Hi Giles,
There are 2 things you need to make sure of.
1 . If these machines are part of a webfarm make sure all web.config
validationKey,
decryptionKey have the same value across all machines.
2. All objects you place in viewstate are serializable.

Thanks,
Aris

"Giles Papworth" wrote:
I seem to be getting this error message all of a sudden on one of my web apps:
>
[HttpException (0x80004005): Unable to validate data.]
System.Web.Configuration.MachineKey.GetDecodedData (Byte[] buf, Byte[]
modifier, Int32 start, Int32 length, Int32& dataLength) +195
System.Web.UI.LosFormatter.Deserialize(String input) +60
>
[HttpException (0x80004005): Authentication of viewstate failed. 1) If this
is a cluster, edit <machineKeyconfiguration so all servers use the same
validationKey and validation algorithm. AutoGenerate cannot be used in a
cluster. 2) Viewstate can only be posted back to the same page. 3) The
viewstate for this page might be corrupted.]
System.Web.UI.LosFormatter.Deserialize(String input) +117
System.Web.UI.Page.LoadPageStateFromPersistenceMed ium() +102
>
[HttpException (0x80004005): Invalid_Viewstate
>
>
And it goes on to explain about the page. On one development machine this
works and then on mine this doesn't. Any ideas why this would suddenly start
happening?
Jun 12 '07 #5
What section in the web.config does that go in?

"Aris Houbavlis" wrote:
Hi Giles,
Try adding this in your web.config
<pages buffer="true" enableSessionState="true" enableViewState="true"
enableViewStateMac="false" />

Aris

"Giles Papworth" wrote:
Also i have now changed my machine key and that seems to have resolved that
problem but now the session seems to be ending everytime i have posted data
to another page.

"Aris Houbavlis" wrote:
Hi Giles,
There are 2 things you need to make sure of.
1 . If these machines are part of a webfarm make sure all web.config
validationKey,
decryptionKey have the same value across all machines.
2. All objects you place in viewstate are serializable.
>
Thanks,
Aris
>
"Giles Papworth" wrote:
>
I seem to be getting this error message all of a sudden on one of my web apps:

[HttpException (0x80004005): Unable to validate data.]
System.Web.Configuration.MachineKey.GetDecodedData (Byte[] buf, Byte[]
modifier, Int32 start, Int32 length, Int32& dataLength) +195
System.Web.UI.LosFormatter.Deserialize(String input) +60

[HttpException (0x80004005): Authentication of viewstate failed. 1) If this
is a cluster, edit <machineKeyconfiguration so all servers use the same
validationKey and validation algorithm. AutoGenerate cannot be used in a
cluster. 2) Viewstate can only be posted back to the same page. 3) The
viewstate for this page might be corrupted.]
System.Web.UI.LosFormatter.Deserialize(String input) +117
System.Web.UI.Page.LoadPageStateFromPersistenceMed ium() +102

[HttpException (0x80004005): Invalid_Viewstate


And it goes on to explain about the page. On one development machine this
works and then on mine this doesn't. Any ideas why this would suddenly start
happening?
Jun 12 '07 #6
<configuration>
<system.web>
<pages buffer="true" ...
...
...
...
...
</system.web>
</configuration>
"Giles Papworth" wrote:
What section in the web.config does that go in?

"Aris Houbavlis" wrote:
Hi Giles,
Try adding this in your web.config
<pages buffer="true" enableSessionState="true" enableViewState="true"
enableViewStateMac="false" />

Aris

"Giles Papworth" wrote:
Also i have now changed my machine key and that seems to have resolved that
problem but now the session seems to be ending everytime i have posted data
to another page.
>
"Aris Houbavlis" wrote:
>
Hi Giles,
There are 2 things you need to make sure of.
1 . If these machines are part of a webfarm make sure all web.config
validationKey,
decryptionKey have the same value across all machines.
2. All objects you place in viewstate are serializable.

Thanks,
Aris

"Giles Papworth" wrote:

I seem to be getting this error message all of a sudden on one of my web apps:
>
[HttpException (0x80004005): Unable to validate data.]
System.Web.Configuration.MachineKey.GetDecodedData (Byte[] buf, Byte[]
modifier, Int32 start, Int32 length, Int32& dataLength) +195
System.Web.UI.LosFormatter.Deserialize(String input) +60
>
[HttpException (0x80004005): Authentication of viewstate failed. 1) If this
is a cluster, edit <machineKeyconfiguration so all servers use the same
validationKey and validation algorithm. AutoGenerate cannot be used in a
cluster. 2) Viewstate can only be posted back to the same page. 3) The
viewstate for this page might be corrupted.]
System.Web.UI.LosFormatter.Deserialize(String input) +117
System.Web.UI.Page.LoadPageStateFromPersistenceMed ium() +102
>
[HttpException (0x80004005): Invalid_Viewstate
>
>
And it goes on to explain about the page. On one development machine this
works and then on mine this doesn't. Any ideas why this would suddenly start
happening?
Jun 12 '07 #7
Thanks for that but it seems to have made no difference.

"Aris Houbavlis" wrote:
<configuration>
<system.web>
<pages buffer="true" ...
...
...
...
...
</system.web>
</configuration>
"Giles Papworth" wrote:
What section in the web.config does that go in?

"Aris Houbavlis" wrote:
Hi Giles,
Try adding this in your web.config
<pages buffer="true" enableSessionState="true" enableViewState="true"
enableViewStateMac="false" />
>
Aris
>
"Giles Papworth" wrote:
>
Also i have now changed my machine key and that seems to have resolved that
problem but now the session seems to be ending everytime i have posted data
to another page.

"Aris Houbavlis" wrote:

Hi Giles,
There are 2 things you need to make sure of.
1 . If these machines are part of a webfarm make sure all web.config
validationKey,
decryptionKey have the same value across all machines.
2. All objects you place in viewstate are serializable.
>
Thanks,
Aris
>
"Giles Papworth" wrote:
>
I seem to be getting this error message all of a sudden on one of my web apps:

[HttpException (0x80004005): Unable to validate data.]
System.Web.Configuration.MachineKey.GetDecodedData (Byte[] buf, Byte[]
modifier, Int32 start, Int32 length, Int32& dataLength) +195
System.Web.UI.LosFormatter.Deserialize(String input) +60

[HttpException (0x80004005): Authentication of viewstate failed. 1) If this
is a cluster, edit <machineKeyconfiguration so all servers use the same
validationKey and validation algorithm. AutoGenerate cannot be used in a
cluster. 2) Viewstate can only be posted back to the same page. 3) The
viewstate for this page might be corrupted.]
System.Web.UI.LosFormatter.Deserialize(String input) +117
System.Web.UI.Page.LoadPageStateFromPersistenceMed ium() +102

[HttpException (0x80004005): Invalid_Viewstate


And it goes on to explain about the page. On one development machine this
works and then on mine this doesn't. Any ideas why this would suddenly start
happening?
Jun 12 '07 #8
what state server setting do u have?
InProc,
SqlServer,
StateServer,
Off (Disables session state)

<system.web>
<sessionState mode="StateServer"
stateConnectionString="tcpip=SampleStateServer:424 24"
cookieless="false"
timeout="20"/>
....
....
....
</system.web

"Giles Papworth" wrote:
Thanks for that but it seems to have made no difference.

"Aris Houbavlis" wrote:
<configuration>
<system.web>
<pages buffer="true" ...
...
...
...
...
</system.web>
</configuration>
"Giles Papworth" wrote:
What section in the web.config does that go in?
>
"Aris Houbavlis" wrote:
>
Hi Giles,
Try adding this in your web.config
<pages buffer="true" enableSessionState="true" enableViewState="true"
enableViewStateMac="false" />

Aris

"Giles Papworth" wrote:

Also i have now changed my machine key and that seems to have resolved that
problem but now the session seems to be ending everytime i have posted data
to another page.
>
"Aris Houbavlis" wrote:
>
Hi Giles,
There are 2 things you need to make sure of.
1 . If these machines are part of a webfarm make sure all web.config
validationKey,
decryptionKey have the same value across all machines.
2. All objects you place in viewstate are serializable.

Thanks,
Aris

"Giles Papworth" wrote:

I seem to be getting this error message all of a sudden on one of my web apps:
>
[HttpException (0x80004005): Unable to validate data.]
System.Web.Configuration.MachineKey.GetDecodedData (Byte[] buf, Byte[]
modifier, Int32 start, Int32 length, Int32& dataLength) +195
System.Web.UI.LosFormatter.Deserialize(String input) +60
>
[HttpException (0x80004005): Authentication of viewstate failed. 1) If this
is a cluster, edit <machineKeyconfiguration so all servers use the same
validationKey and validation algorithm. AutoGenerate cannot be used in a
cluster. 2) Viewstate can only be posted back to the same page. 3) The
viewstate for this page might be corrupted.]
System.Web.UI.LosFormatter.Deserialize(String input) +117
System.Web.UI.Page.LoadPageStateFromPersistenceMed ium() +102
>
[HttpException (0x80004005): Invalid_Viewstate
>
>
And it goes on to explain about the page. On one development machine this
works and then on mine this doesn't. Any ideas why this would suddenly start
happening?
Jun 12 '07 #9
<sessionState mode="InProc" stateConnectionString="tcpip=127.0.0.1:42424"
sqlConnectionString="data source=127.0.0.1;Trusted_Connection=yes"
cookieless="false" timeout="20"/>

"Aris Houbavlis" wrote:
what state server setting do u have?
InProc,
SqlServer,
StateServer,
Off (Disables session state)

<system.web>
<sessionState mode="StateServer"
stateConnectionString="tcpip=SampleStateServer:424 24"
cookieless="false"
timeout="20"/>
....
....
....
</system.web

"Giles Papworth" wrote:
Thanks for that but it seems to have made no difference.

"Aris Houbavlis" wrote:
<configuration>
<system.web>
<pages buffer="true" ...
...
...
...
...
</system.web>
</configuration>
>
>
"Giles Papworth" wrote:
>
What section in the web.config does that go in?

"Aris Houbavlis" wrote:

Hi Giles,
Try adding this in your web.config
<pages buffer="true" enableSessionState="true" enableViewState="true"
enableViewStateMac="false" />
>
Aris
>
"Giles Papworth" wrote:
>
Also i have now changed my machine key and that seems to have resolved that
problem but now the session seems to be ending everytime i have posted data
to another page.

"Aris Houbavlis" wrote:

Hi Giles,
There are 2 things you need to make sure of.
1 . If these machines are part of a webfarm make sure all web.config
validationKey,
decryptionKey have the same value across all machines.
2. All objects you place in viewstate are serializable.
>
Thanks,
Aris
>
"Giles Papworth" wrote:
>
I seem to be getting this error message all of a sudden on one of my web apps:

[HttpException (0x80004005): Unable to validate data.]
System.Web.Configuration.MachineKey.GetDecodedData (Byte[] buf, Byte[]
modifier, Int32 start, Int32 length, Int32& dataLength) +195
System.Web.UI.LosFormatter.Deserialize(String input) +60

[HttpException (0x80004005): Authentication of viewstate failed. 1) If this
is a cluster, edit <machineKeyconfiguration so all servers use the same
validationKey and validation algorithm. AutoGenerate cannot be used in a
cluster. 2) Viewstate can only be posted back to the same page. 3) The
viewstate for this page might be corrupted.]
System.Web.UI.LosFormatter.Deserialize(String input) +117
System.Web.UI.Page.LoadPageStateFromPersistenceMed ium() +102

[HttpException (0x80004005): Invalid_Viewstate


And it goes on to explain about the page. On one development machine this
works and then on mine this doesn't. Any ideas why this would suddenly start
happening?
Jun 12 '07 #10
Hi Giles,
Any info in the event viewer?
Could be that the IIS is recycling, for some odd reason.
I would try to set session to STATESERVER.
Look here for ref:
http://msdn2.microsoft.com/en-us/lib...z9(vs.80).aspx
See if it resolves the Session problem u are experiencing.

Aris

"Giles Papworth" wrote:
<sessionState mode="InProc" stateConnectionString="tcpip=127.0.0.1:42424"
sqlConnectionString="data source=127.0.0.1;Trusted_Connection=yes"
cookieless="false" timeout="20"/>

"Aris Houbavlis" wrote:
what state server setting do u have?
InProc,
SqlServer,
StateServer,
Off (Disables session state)

<system.web>
<sessionState mode="StateServer"
stateConnectionString="tcpip=SampleStateServer:424 24"
cookieless="false"
timeout="20"/>
....
....
....
</system.web

"Giles Papworth" wrote:
Thanks for that but it seems to have made no difference.
>
"Aris Houbavlis" wrote:
>
<configuration>
<system.web>
<pages buffer="true" ...
...
...
...
...
</system.web>
</configuration>


"Giles Papworth" wrote:

What section in the web.config does that go in?
>
"Aris Houbavlis" wrote:
>
Hi Giles,
Try adding this in your web.config
<pages buffer="true" enableSessionState="true" enableViewState="true"
enableViewStateMac="false" />

Aris

"Giles Papworth" wrote:

Also i have now changed my machine key and that seems to have resolved that
problem but now the session seems to be ending everytime i have posted data
to another page.
>
"Aris Houbavlis" wrote:
>
Hi Giles,
There are 2 things you need to make sure of.
1 . If these machines are part of a webfarm make sure all web.config
validationKey,
decryptionKey have the same value across all machines.
2. All objects you place in viewstate are serializable.

Thanks,
Aris

"Giles Papworth" wrote:

I seem to be getting this error message all of a sudden on one of my web apps:
>
[HttpException (0x80004005): Unable to validate data.]
System.Web.Configuration.MachineKey.GetDecodedData (Byte[] buf, Byte[]
modifier, Int32 start, Int32 length, Int32& dataLength) +195
System.Web.UI.LosFormatter.Deserialize(String input) +60
>
[HttpException (0x80004005): Authentication of viewstate failed. 1) If this
is a cluster, edit <machineKeyconfiguration so all servers use the same
validationKey and validation algorithm. AutoGenerate cannot be used in a
cluster. 2) Viewstate can only be posted back to the same page. 3) The
viewstate for this page might be corrupted.]
System.Web.UI.LosFormatter.Deserialize(String input) +117
System.Web.UI.Page.LoadPageStateFromPersistenceMed ium() +102
>
[HttpException (0x80004005): Invalid_Viewstate
>
>
And it goes on to explain about the page. On one development machine this
works and then on mine this doesn't. Any ideas why this would suddenly start
happening?
Jun 12 '07 #11
I will add that in and see if it does the job.

"Aris Houbavlis" wrote:
Hi Giles,
Any info in the event viewer?
Could be that the IIS is recycling, for some odd reason.
I would try to set session to STATESERVER.
Look here for ref:
http://msdn2.microsoft.com/en-us/lib...z9(vs.80).aspx
See if it resolves the Session problem u are experiencing.

Aris

"Giles Papworth" wrote:
<sessionState mode="InProc" stateConnectionString="tcpip=127.0.0.1:42424"
sqlConnectionString="data source=127.0.0.1;Trusted_Connection=yes"
cookieless="false" timeout="20"/>

"Aris Houbavlis" wrote:
what state server setting do u have?
InProc,
SqlServer,
StateServer,
Off (Disables session state)
>
<system.web>
<sessionState mode="StateServer"
stateConnectionString="tcpip=SampleStateServer:424 24"
cookieless="false"
timeout="20"/>
....
....
....
</system.web
>
"Giles Papworth" wrote:
>
Thanks for that but it seems to have made no difference.

"Aris Houbavlis" wrote:

<configuration>
<system.web>
<pages buffer="true" ...
...
...
...
...
</system.web>
</configuration>
>
>
"Giles Papworth" wrote:
>
What section in the web.config does that go in?

"Aris Houbavlis" wrote:

Hi Giles,
Try adding this in your web.config
<pages buffer="true" enableSessionState="true" enableViewState="true"
enableViewStateMac="false" />
>
Aris
>
"Giles Papworth" wrote:
>
Also i have now changed my machine key and that seems to have resolved that
problem but now the session seems to be ending everytime i have posted data
to another page.

"Aris Houbavlis" wrote:

Hi Giles,
There are 2 things you need to make sure of.
1 . If these machines are part of a webfarm make sure all web.config
validationKey,
decryptionKey have the same value across all machines.
2. All objects you place in viewstate are serializable.
>
Thanks,
Aris
>
"Giles Papworth" wrote:
>
I seem to be getting this error message all of a sudden on one of my web apps:

[HttpException (0x80004005): Unable to validate data.]
System.Web.Configuration.MachineKey.GetDecodedData (Byte[] buf, Byte[]
modifier, Int32 start, Int32 length, Int32& dataLength) +195
System.Web.UI.LosFormatter.Deserialize(String input) +60

[HttpException (0x80004005): Authentication of viewstate failed. 1) If this
is a cluster, edit <machineKeyconfiguration so all servers use the same
validationKey and validation algorithm. AutoGenerate cannot be used in a
cluster. 2) Viewstate can only be posted back to the same page. 3) The
viewstate for this page might be corrupted.]
System.Web.UI.LosFormatter.Deserialize(String input) +117
System.Web.UI.Page.LoadPageStateFromPersistenceMed ium() +102

[HttpException (0x80004005): Invalid_Viewstate


And it goes on to explain about the page. On one development machine this
works and then on mine this doesn't. Any ideas why this would suddenly start
happening?
Jun 12 '07 #12

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

Similar topics

5
by: Hardy Wang | last post by:
Hi all: I developed a web site, it passed various testing internally. When I put this site in production, I receive some error reports from this site saying "the viewstate is invalid for this page...
0
by: Nazir | last post by:
Hi I've got a strange problem - an aspx page which appears fine on IE 6 W2k, fine on IE 5.5 WinNT, fine on IE 5.0 Win95, but has two problems on IE 4 and some IE 5's (on NT and W2k): -...
6
by: sviau | last post by:
since rewriting our site from asp to asp.net, weve receveid many complaints from users stating that they get invalid urls, and cant access certain pages of our site nothing has changed in our...
2
by: Brad | last post by:
I have an intranet app that has just started sporadically getting the following error "The viewstate is invalid for this page and might be corrupted." By sproadic I mean 3-4 times during the past...
2
by: Bartosz Krzywicki | last post by:
I have a problem with the following error: "Server Error in '/sir' Application. -------------------------------------------------------------------------------- The viewstate is invalid for...
6
by: vinay | last post by:
What is this error?? Exception Details: System.Web.HttpException: Unable to validate data. System.Web.Configuration.MachineKey.GetDecodedData(Byte buf, Byte modifier, Int32 start, Int32...
11
by: Nad | last post by:
Hello, I have a page with two link buttons. When I click on the first one I call server.execute("target.aspx") to view target.aspx on the original page. Then I click on the second link button...
9
by: Jamie | last post by:
I am receiving an Invalid ViewState error after posting back to the same page twice. Consistently the error occurs after the second postback and not after the first. I have looked into creating...
0
by: tynorton | last post by:
Hey, I've been working on this issue for a while now, with no leads or success. The scenario is a homemade modal dialog using UpdatePanels. There a couple ImageButtons inside of usercontrols...
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
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,...
1
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...
0
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,...
0
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...
0
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
0
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...
0
muto222
php
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.