473,663 Members | 2,903 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

User Controls not keeping property values

Howdy,

I have a usercontrol in my aspx page and when the page loads, I send it some
property values based on the data displayed. I am sending it to a public
property like below. However the usercontrol has some functions and when the
function is run, I lose all of the property values. If I assign the property
value to a text box, the information is not lost in the text box. I think
this is by design, but how do I get around it???

Public Property Height() As Integer
Get

Return _height

End Get

Set(ByVal Value As Integer)

_height = Value

End Set

End Property

Here is the property saving to a text box which works well.

Public Property FileName() As String

Get

Return txtRegForm.Text

End Get

Set(ByVal Value As String)

txtRegForm.Text = Value

End Set

End Property
I don't want to make a text box for each property, that can get messy.

Thanks!!

--
David Lozzi
Web Applications Developer
dlozzi@(remove-this)delphi-ts.com


Dec 19 '05 #1
7 2589
Look at using either Session or ViewState variables.
--
Christopher A. Reed
"The oxen are slow, but the earth is patient."

"David Lozzi" <Da********@nos pam.nospam> wrote in message
news:Oa******** ******@TK2MSFTN GP09.phx.gbl...
Howdy,

I have a usercontrol in my aspx page and when the page loads, I send it
some property values based on the data displayed. I am sending it to a
public property like below. However the usercontrol has some functions and
when the function is run, I lose all of the property values. If I assign
the property value to a text box, the information is not lost in the text
box. I think this is by design, but how do I get around it???

Public Property Height() As Integer
Get

Return _height

End Get

Set(ByVal Value As Integer)

_height = Value

End Set

End Property

Here is the property saving to a text box which works well.

Public Property FileName() As String

Get

Return txtRegForm.Text

End Get

Set(ByVal Value As String)

txtRegForm.Text = Value

End Set

End Property
I don't want to make a text box for each property, that can get messy.

Thanks!!

--
David Lozzi
Web Applications Developer
dlozzi@(remove-this)delphi-ts.com

Dec 19 '05 #2
Is your user control inside a databound control? a repeater or a datagrid?

If so what kind? and when/how are you setting the UserControl data?
Dec 19 '05 #3
It is not, its just part of a form.

--
David Lozzi
Web Applications Developer
dlozzi@(remove-this)delphi-ts.com

"Ben Dewey" <As*********@ho tmail.com> wrote in message
news:%2******** ********@TK2MSF TNGP15.phx.gbl. ..
Is your user control inside a databound control? a repeater or a
datagrid?

If so what kind? and when/how are you setting the UserControl data?

Dec 20 '05 #4
Hi David,

I think Christopher's consideration are reasonable. ASP.NET web pages are
request/response based, and all the in-memory page variables are not
persisted between mulitple page requests(postba ck....). So if we want some
certain member varriables to be persisted and shared between postbacks, we
need to store them into some persistent storage, such as SessionState or
Viewstate....

e.g:
===============
Public Property Height() As Integer
Get

Return ViewState("__HE IGHT")

End Get

Set(ByVal Value As Integer)

ViewState("__HE IGHT") = value

End Set

End Property
=============== ==

Also, you can add some additional code to do bad value protection in the
property accessor....

Hope helps. Thanks,

Steven Cheng
Microsoft Online Support

Get Secure! www.microsoft.com/security
(This posting is provided "AS IS", with no warranties, and confers no
rights.)


--------------------
| From: "David Lozzi" <Da********@nos pam.nospam>
| References: <Oa************ **@TK2MSFTNGP09 .phx.gbl>
<#d************ **@TK2MSFTNGP15 .phx.gbl>
| Subject: Re: User Controls not keeping property values
| Date: Mon, 19 Dec 2005 18:48:40 -0500
| Lines: 18
| X-Priority: 3
| X-MSMail-Priority: Normal
| X-Newsreader: Microsoft Outlook Express 6.00.2900.2670
| X-RFC2646: Format=Flowed; Response
| X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2670
| Message-ID: <eT************ **@TK2MSFTNGP09 .phx.gbl>
| Newsgroups: microsoft.publi c.dotnet.framew ork.aspnet
| NNTP-Posting-Host: c-24-63-42-200.hsd1.ma.com cast.net 24.63.42.200
| Path:
TK2MSFTNGXA02.p hx.gbl!TK2MSFTN GXA01.phx.gbl!T K2MSFTFEED02.ph x.gbl!tornado.f a
stwebnet.it!tis cali!newsfeed1. ip.tiscali.net! news.glorb.com! newsfeed.hal-mli
net!feeder1.hal-mli.net!news.al t.net!msrtrans! TK2MSFTNGP08.ph x.gbl!TK2MSFTN
GP09.phx.gbl
| Xref: TK2MSFTNGXA02.p hx.gbl
microsoft.publi c.dotnet.framew ork.aspnet:3658 34
| X-Tomcat-NG: microsoft.publi c.dotnet.framew ork.aspnet
|
| It is not, its just part of a form.
|
| --
| David Lozzi
| Web Applications Developer
| dlozzi@(remove-this)delphi-ts.com
|
|
|
| "Ben Dewey" <As*********@ho tmail.com> wrote in message
| news:%2******** ********@TK2MSF TNGP15.phx.gbl. ..
| > Is your user control inside a databound control? a repeater or a
| > datagrid?
| >
| > If so what kind? and when/how are you setting the UserControl data?
| >
|
|
|

Dec 20 '05 #5
That works great. Any precautions I should be aware of when using the
ViewState? Does it empty itself?

Thanks,

--
David Lozzi
Web Applications Developer
dlozzi@(remove-this)delphi-ts.com

"Steven Cheng[MSFT]" <st*****@online .microsoft.com> wrote in message
news:IR******** ******@TK2MSFTN GXA02.phx.gbl.. .
Hi David,

I think Christopher's consideration are reasonable. ASP.NET web pages are
request/response based, and all the in-memory page variables are not
persisted between mulitple page requests(postba ck....). So if we want some
certain member varriables to be persisted and shared between postbacks, we
need to store them into some persistent storage, such as SessionState or
Viewstate....

e.g:
===============
Public Property Height() As Integer
Get

Return ViewState("__HE IGHT")

End Get

Set(ByVal Value As Integer)

ViewState("__HE IGHT") = value

End Set

End Property
=============== ==

Also, you can add some additional code to do bad value protection in the
property accessor....

Hope helps. Thanks,

Steven Cheng
Microsoft Online Support

Get Secure! www.microsoft.com/security
(This posting is provided "AS IS", with no warranties, and confers no
rights.)


--------------------
| From: "David Lozzi" <Da********@nos pam.nospam>
| References: <Oa************ **@TK2MSFTNGP09 .phx.gbl>
<#d************ **@TK2MSFTNGP15 .phx.gbl>
| Subject: Re: User Controls not keeping property values
| Date: Mon, 19 Dec 2005 18:48:40 -0500
| Lines: 18
| X-Priority: 3
| X-MSMail-Priority: Normal
| X-Newsreader: Microsoft Outlook Express 6.00.2900.2670
| X-RFC2646: Format=Flowed; Response
| X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2670
| Message-ID: <eT************ **@TK2MSFTNGP09 .phx.gbl>
| Newsgroups: microsoft.publi c.dotnet.framew ork.aspnet
| NNTP-Posting-Host: c-24-63-42-200.hsd1.ma.com cast.net 24.63.42.200
| Path:
TK2MSFTNGXA02.p hx.gbl!TK2MSFTN GXA01.phx.gbl!T K2MSFTFEED02.ph x.gbl!tornado.f a
stwebnet.it!tis cali!newsfeed1. ip.tiscali.net! news.glorb.com! newsfeed.hal-mli
net!feeder1.hal-mli.net!news.al t.net!msrtrans! TK2MSFTNGP08.ph x.gbl!TK2MSFTN
GP09.phx.gbl
| Xref: TK2MSFTNGXA02.p hx.gbl
microsoft.publi c.dotnet.framew ork.aspnet:3658 34
| X-Tomcat-NG: microsoft.publi c.dotnet.framew ork.aspnet
|
| It is not, its just part of a form.
|
| --
| David Lozzi
| Web Applications Developer
| dlozzi@(remove-this)delphi-ts.com
|
|
|
| "Ben Dewey" <As*********@ho tmail.com> wrote in message
| news:%2******** ********@TK2MSF TNGP15.phx.gbl. ..
| > Is your user control inside a databound control? a repeater or a
| > datagrid?
| >
| > If so what kind? and when/how are you setting the UserControl data?
| >
|
|
|

Dec 20 '05 #6
Thanks for your quick response David,

As for ViewState, you may need to read some other reference so as to better
understand it's mechanism and how it working with the asp.net page's
lifecycle. here are some useful reference on asp.net viewstate and
webcontrol state management:

#Understanding ASP.NET View State
http://msdn.microsoft.com/library/en...asp?frame=true

#ASP.NET State Management
http://msdn.microsoft.com/library/en...tatemanagement
..asp?frame=tru e

#Creating Custom Web Controls with ASP.NET 2.0
http://msdn.microsoft.com/library/en....asp?frame=tru
e

Regards,

Steven Cheng
Microsoft Online Support

Get Secure! www.microsoft.com/security
(This posting is provided "AS IS", with no warranties, and confers no
rights.)



--------------------
| From: "David Lozzi" <Da********@nos pam.nospam>
| References: <Oa************ **@TK2MSFTNGP09 .phx.gbl>
<#d************ **@TK2MSFTNGP15 .phx.gbl>
<eT************ **@TK2MSFTNGP09 .phx.gbl>
<IR************ **@TK2MSFTNGXA0 2.phx.gbl>
| Subject: Re: User Controls not keeping property values
| Date: Tue, 20 Dec 2005 01:14:56 -0500
| Lines: 104
| X-Priority: 3
| X-MSMail-Priority: Normal
| X-Newsreader: Microsoft Outlook Express 6.00.2900.2670
| X-RFC2646: Format=Flowed; Original
| X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2670
| Message-ID: <OP************ **@TK2MSFTNGP11 .phx.gbl>
| Newsgroups: microsoft.publi c.dotnet.framew ork.aspnet
| NNTP-Posting-Host: c-24-63-42-200.hsd1.ma.com cast.net 24.63.42.200
| Path: TK2MSFTNGXA02.p hx.gbl!TK2MSFTN GP08.phx.gbl!TK 2MSFTNGP11.phx. gbl
| Xref: TK2MSFTNGXA02.p hx.gbl
microsoft.publi c.dotnet.framew ork.aspnet:3658 65
| X-Tomcat-NG: microsoft.publi c.dotnet.framew ork.aspnet
|
| That works great. Any precautions I should be aware of when using the
| ViewState? Does it empty itself?
|
| Thanks,
|
| --
| David Lozzi
| Web Applications Developer
| dlozzi@(remove-this)delphi-ts.com
|
|
|
| "Steven Cheng[MSFT]" <st*****@online .microsoft.com> wrote in message
| news:IR******** ******@TK2MSFTN GXA02.phx.gbl.. .
| > Hi David,
| >
| > I think Christopher's consideration are reasonable. ASP.NET web pages
are
| > request/response based, and all the in-memory page variables are not
| > persisted between mulitple page requests(postba ck....). So if we want
some
| > certain member varriables to be persisted and shared between postbacks,
we
| > need to store them into some persistent storage, such as SessionState or
| > Viewstate....
| >
| > e.g:
| > ===============
| > Public Property Height() As Integer
| > Get
| >
| > Return ViewState("__HE IGHT")
| >
| > End Get
| >
| > Set(ByVal Value As Integer)
| >
| > ViewState("__HE IGHT") = value
| >
| > End Set
| >
| > End Property
| > =============== ==
| >
| > Also, you can add some additional code to do bad value protection in the
| > property accessor....
| >
| > Hope helps. Thanks,
| >
| > Steven Cheng
| > Microsoft Online Support
| >
| > Get Secure! www.microsoft.com/security
| > (This posting is provided "AS IS", with no warranties, and confers no
| > rights.)
| >
| >
| >
| >
| >
| >
| > --------------------
| > | From: "David Lozzi" <Da********@nos pam.nospam>
| > | References: <Oa************ **@TK2MSFTNGP09 .phx.gbl>
| > <#d************ **@TK2MSFTNGP15 .phx.gbl>
| > | Subject: Re: User Controls not keeping property values
| > | Date: Mon, 19 Dec 2005 18:48:40 -0500
| > | Lines: 18
| > | X-Priority: 3
| > | X-MSMail-Priority: Normal
| > | X-Newsreader: Microsoft Outlook Express 6.00.2900.2670
| > | X-RFC2646: Format=Flowed; Response
| > | X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2670
| > | Message-ID: <eT************ **@TK2MSFTNGP09 .phx.gbl>
| > | Newsgroups: microsoft.publi c.dotnet.framew ork.aspnet
| > | NNTP-Posting-Host: c-24-63-42-200.hsd1.ma.com cast.net 24.63.42.200
| > | Path:
| >
TK2MSFTNGXA02.p hx.gbl!TK2MSFTN GXA01.phx.gbl!T K2MSFTFEED02.ph x.gbl!tornado.f a
| >
stwebnet.it!tis cali!newsfeed1. ip.tiscali.net! news.glorb.com! newsfeed.hal-mli
| >
net!feeder1.hal-mli.net!news.al t.net!msrtrans! TK2MSFTNGP08.ph x.gbl!TK2MSFTN
| > GP09.phx.gbl
| > | Xref: TK2MSFTNGXA02.p hx.gbl
| > microsoft.publi c.dotnet.framew ork.aspnet:3658 34
| > | X-Tomcat-NG: microsoft.publi c.dotnet.framew ork.aspnet
| > |
| > | It is not, its just part of a form.
| > |
| > | --
| > | David Lozzi
| > | Web Applications Developer
| > | dlozzi@(remove-this)delphi-ts.com
| > |
| > |
| > |
| > | "Ben Dewey" <As*********@ho tmail.com> wrote in message
| > | news:%2******** ********@TK2MSF TNGP15.phx.gbl. ..
| > | > Is your user control inside a databound control? a repeater or a
| > | > datagrid?
| > | >
| > | > If so what kind? and when/how are you setting the UserControl data?
| > | >
| > |
| > |
| > |
| >
|
|
|

Dec 20 '05 #7
Thanks

--
David Lozzi
Web Applications Developer
dlozzi@(remove-this)delphi-ts.com

"Steven Cheng[MSFT]" <st*****@online .microsoft.com> wrote in message
news:5r******** ******@TK2MSFTN GXA02.phx.gbl.. .
Thanks for your quick response David,

As for ViewState, you may need to read some other reference so as to
better
understand it's mechanism and how it working with the asp.net page's
lifecycle. here are some useful reference on asp.net viewstate and
webcontrol state management:

#Understanding ASP.NET View State
http://msdn.microsoft.com/library/en...asp?frame=true

#ASP.NET State Management
http://msdn.microsoft.com/library/en...tatemanagement
asp?frame=true

#Creating Custom Web Controls with ASP.NET 2.0
http://msdn.microsoft.com/library/en....asp?frame=tru
e

Regards,

Steven Cheng
Microsoft Online Support

Get Secure! www.microsoft.com/security
(This posting is provided "AS IS", with no warranties, and confers no
rights.)



--------------------
| From: "David Lozzi" <Da********@nos pam.nospam>
| References: <Oa************ **@TK2MSFTNGP09 .phx.gbl>
<#d************ **@TK2MSFTNGP15 .phx.gbl>
<eT************ **@TK2MSFTNGP09 .phx.gbl>
<IR************ **@TK2MSFTNGXA0 2.phx.gbl>
| Subject: Re: User Controls not keeping property values
| Date: Tue, 20 Dec 2005 01:14:56 -0500
| Lines: 104
| X-Priority: 3
| X-MSMail-Priority: Normal
| X-Newsreader: Microsoft Outlook Express 6.00.2900.2670
| X-RFC2646: Format=Flowed; Original
| X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2670
| Message-ID: <OP************ **@TK2MSFTNGP11 .phx.gbl>
| Newsgroups: microsoft.publi c.dotnet.framew ork.aspnet
| NNTP-Posting-Host: c-24-63-42-200.hsd1.ma.com cast.net 24.63.42.200
| Path: TK2MSFTNGXA02.p hx.gbl!TK2MSFTN GP08.phx.gbl!TK 2MSFTNGP11.phx. gbl
| Xref: TK2MSFTNGXA02.p hx.gbl
microsoft.publi c.dotnet.framew ork.aspnet:3658 65
| X-Tomcat-NG: microsoft.publi c.dotnet.framew ork.aspnet
|
| That works great. Any precautions I should be aware of when using the
| ViewState? Does it empty itself?
|
| Thanks,
|
| --
| David Lozzi
| Web Applications Developer
| dlozzi@(remove-this)delphi-ts.com
|
|
|
| "Steven Cheng[MSFT]" <st*****@online .microsoft.com> wrote in message
| news:IR******** ******@TK2MSFTN GXA02.phx.gbl.. .
| > Hi David,
| >
| > I think Christopher's consideration are reasonable. ASP.NET web pages
are
| > request/response based, and all the in-memory page variables are not
| > persisted between mulitple page requests(postba ck....). So if we want
some
| > certain member varriables to be persisted and shared between
postbacks,
we
| > need to store them into some persistent storage, such as SessionState
or
| > Viewstate....
| >
| > e.g:
| > ===============
| > Public Property Height() As Integer
| > Get
| >
| > Return ViewState("__HE IGHT")
| >
| > End Get
| >
| > Set(ByVal Value As Integer)
| >
| > ViewState("__HE IGHT") = value
| >
| > End Set
| >
| > End Property
| > =============== ==
| >
| > Also, you can add some additional code to do bad value protection in
the
| > property accessor....
| >
| > Hope helps. Thanks,
| >
| > Steven Cheng
| > Microsoft Online Support
| >
| > Get Secure! www.microsoft.com/security
| > (This posting is provided "AS IS", with no warranties, and confers no
| > rights.)
| >
| >
| >
| >
| >
| >
| > --------------------
| > | From: "David Lozzi" <Da********@nos pam.nospam>
| > | References: <Oa************ **@TK2MSFTNGP09 .phx.gbl>
| > <#d************ **@TK2MSFTNGP15 .phx.gbl>
| > | Subject: Re: User Controls not keeping property values
| > | Date: Mon, 19 Dec 2005 18:48:40 -0500
| > | Lines: 18
| > | X-Priority: 3
| > | X-MSMail-Priority: Normal
| > | X-Newsreader: Microsoft Outlook Express 6.00.2900.2670
| > | X-RFC2646: Format=Flowed; Response
| > | X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2670
| > | Message-ID: <eT************ **@TK2MSFTNGP09 .phx.gbl>
| > | Newsgroups: microsoft.publi c.dotnet.framew ork.aspnet
| > | NNTP-Posting-Host: c-24-63-42-200.hsd1.ma.com cast.net 24.63.42.200
| > | Path:
| >
TK2MSFTNGXA02.p hx.gbl!TK2MSFTN GXA01.phx.gbl!T K2MSFTFEED02.ph x.gbl!tornado.f a
| >
stwebnet.it!tis cali!newsfeed1. ip.tiscali.net! news.glorb.com! newsfeed.hal-mli
| >
net!feeder1.hal-mli.net!news.al t.net!msrtrans! TK2MSFTNGP08.ph x.gbl!TK2MSFTN
| > GP09.phx.gbl
| > | Xref: TK2MSFTNGXA02.p hx.gbl
| > microsoft.publi c.dotnet.framew ork.aspnet:3658 34
| > | X-Tomcat-NG: microsoft.publi c.dotnet.framew ork.aspnet
| > |
| > | It is not, its just part of a form.
| > |
| > | --
| > | David Lozzi
| > | Web Applications Developer
| > | dlozzi@(remove-this)delphi-ts.com
| > |
| > |
| > |
| > | "Ben Dewey" <As*********@ho tmail.com> wrote in message
| > | news:%2******** ********@TK2MSF TNGP15.phx.gbl. ..
| > | > Is your user control inside a databound control? a repeater or a
| > | > datagrid?
| > | >
| > | > If so what kind? and when/how are you setting the UserControl
data?
| > | >
| > |
| > |
| > |
| >
|
|
|

Dec 20 '05 #8

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

Similar topics

4
1355
by: Andrea Williams | last post by:
I'm trying to set up a user control and change some values from the aspx page, but I keep running into trouble. What I really would like to do is be able to set a Label.Text in the user control from an aspx page. If I open up a static method to set the Label in the code-behind of the user control(uc), then the code in the uc doesn't recognize that the label exists (only if the method is a static (shared) method). If I set up a private...
1
2130
by: Robert Howells | last post by:
Perhaps I'm just too new at this to pull it off, or perhaps it's just bad architecture. I'd appreciate some feedback on the the wisdom (or lack thereof) in attempting the following: I'm not new to programming, but I am new to ASP.NET and Web application design in general... loved the concept of user controls and dynamically adding them to a page. So what I wound up with was an application that dynamically loads two user controls directly...
3
1321
by: Kezza | last post by:
Hi There.. I have dynamically created some textbox and checkbox controls by adding them to a panel. Now I would like to get the values out. I have created a for each loop that I can see the controls Unique ID with. But I for the life of me can't figure out how to see the value the control is storing. Could somebody please help me. I'm thinking that I might need to use something like "findcontrol", but this wouldn't make sense to me. ...
5
5962
by: Nathan Sokalski | last post by:
I have a user control that contains three variables which are accessed through public properties. They are declared immediately below the "Web Form Designer Generated Code" section. Every time an event is fired by one of the controls contained in the User Control, these variable are reset. Here is my current code (I have a little more to add later, right now I am just concerned about the variables getting reset): Public Class DatePicker2...
6
1956
by: Louise | last post by:
I use Visual Basic .NET Framework 1.1, Visual Studio. I have a Web page (aspx) referencing a control (ascx) that has a placeholder that is assigned one of 2 child controls through buttons. The ViewState of the second child control gets confused with the first child control - the first Text property in the 2nd child gets updated with the first Text property of the 1st child when the 2nd button is clicked after the 1st. For instance,...
8
1566
by: MattB | last post by:
I have a asp.net 1.1/vb application that has a page with a bunch of dynamically added User Controls. When I add the controls, I set the UserControl.EnableViewState to true. For all my controls with TextBoxes, I can get the value back out of the controls just fine. One of my User Controls has some DropDownLists as well as a TextBox. I get a value from the TextBox on postback, but not the DropDownLists. Even if I see a value selected when...
2
1552
by: | last post by:
I want to use codebehind to pass property values to a control that I've embedded INSIDE of a user control. In other words, let's say I have the following: MyPage.aspx ....with the following control placed on it... MyUserControl.ascx .... and inside of MyUserControl.ascx, is an instance of .... MyCommercialUploadControl1
6
11068
by: | last post by:
I have made some user controls with custom properties. I can set those properties on instances of my user controls, and I have programmed my user control to do useful visual things in response to how those properties are set. I want to be able to do two other things: a) add User control instances to my page, filling in the place of placeholder controls, and b) programmatically setting custom properties on those dynamically spawned...
2
15065
by: ChrisCicc | last post by:
Hi All, I got a real doozy here. I have read hundreds upon hundreds of forum posts and found numerous others who have replicated this problem, but have yet to find a solution. Through testing I have been able to find the cause of the problem, and will describe it here first textually and then through a code example. The purpose of what I am trying to do is to create a postback-free web application through the use of ASP.net AJAX UpdatePanels...
0
8345
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
8771
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
8548
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
8634
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...
0
7371
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
4182
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
4349
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
2000
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
2
1757
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.