473,804 Members | 3,091 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

web forms flow

Hi all,
In traditional asp form, there is an action field in a form, any time the
page is valid, after click the submit button, the next page comes up based on
the value in the action field.
In asp.net, in the sumit_click sub, after validating the all the fields in a
form, do you always use response.redire ct or reponse.transfe r to go to the
next page, any other ways? what's the exactly difference or which one will be
better?
--
Betty
Jan 27 '06 #1
15 1658
You would usually use Response.Redire ct. There is also Server.Transfer , but
that transfers the page without letting the client browser know, so the old
page would still be in the URL. In what I've seen, Response.Redire ct is a
pretty standard way to do it.

Also, submit_click would normally not just validate the fields - it would
also process the page. So you would not redirect to another page to have it
add a row in the database, for example. You would do it right in your event
handler, then redirect to the next page that is the logical next page in the
application.

"c676228" <be****@communi ty.nospam> wrote in message
news:6B******** *************** ***********@mic rosoft.com...
Hi all,
In traditional asp form, there is an action field in a form, any time the
page is valid, after click the submit button, the next page comes up based
on
the value in the action field.
In asp.net, in the sumit_click sub, after validating the all the fields in
a
form, do you always use response.redire ct or reponse.transfe r to go to the
next page, any other ways? what's the exactly difference or which one will
be
better?
--
Betty

Jan 27 '06 #2
Thank you, Marina, for your expert opinions.
Your reply give me a chance to ask you another question.
Let's assume I inserted a row of user data in the first web form, at that
time,
the web form doesn't present the credit card information for payment yet or
I still need a couple more forms to collect more user data.
after user input other data/credit card number etc. and the payment or
other insert action in other forms are failed, what should I do with the user
data I inserted to the tables in the former pages already?
--
Betty
"Marina Levit [MVP]" wrote:
You would usually use Response.Redire ct. There is also Server.Transfer , but
that transfers the page without letting the client browser know, so the old
page would still be in the URL. In what I've seen, Response.Redire ct is a
pretty standard way to do it.

Also, submit_click would normally not just validate the fields - it would
also process the page. So you would not redirect to another page to have it
add a row in the database, for example. You would do it right in your event
handler, then redirect to the next page that is the logical next page in the
application.

"c676228" <be****@communi ty.nospam> wrote in message
news:6B******** *************** ***********@mic rosoft.com...
Hi all,
In traditional asp form, there is an action field in a form, any time the
page is valid, after click the submit button, the next page comes up based
on
the value in the action field.
In asp.net, in the sumit_click sub, after validating the all the fields in
a
form, do you always use response.redire ct or reponse.transfe r to go to the
next page, any other ways? what's the exactly difference or which one will
be
better?
--
Betty


Jan 27 '06 #3
It all depends on your flow. In the case of the first page really only
collecting parts of the data, I wouldn't really insert that into a table
that holds only permanent custom requests. My example was pointing out that
typically a page will deal with its own data, and that was an example i
gave. I didn't mean to imply that it must always save its data to the
database even when it logically doesn't make sense to do so.

In your scenario it may make sense to hold on to the data in session
variables, redirect to the next page, etc, until you are ready to add data
to the database. In this case you are vulnerable to session time out
situations, although it may be acceptable for your application.

"c676228" <be****@communi ty.nospam> wrote in message
news:7D******** *************** ***********@mic rosoft.com...
Thank you, Marina, for your expert opinions.
Your reply give me a chance to ask you another question.
Let's assume I inserted a row of user data in the first web form, at that
time,
the web form doesn't present the credit card information for payment yet
or
I still need a couple more forms to collect more user data.
after user input other data/credit card number etc. and the payment or
other insert action in other forms are failed, what should I do with the
user
data I inserted to the tables in the former pages already?
--
Betty
"Marina Levit [MVP]" wrote:
You would usually use Response.Redire ct. There is also Server.Transfer ,
but
that transfers the page without letting the client browser know, so the
old
page would still be in the URL. In what I've seen, Response.Redire ct is a
pretty standard way to do it.

Also, submit_click would normally not just validate the fields - it would
also process the page. So you would not redirect to another page to have
it
add a row in the database, for example. You would do it right in your
event
handler, then redirect to the next page that is the logical next page in
the
application.

"c676228" <be****@communi ty.nospam> wrote in message
news:6B******** *************** ***********@mic rosoft.com...
> Hi all,
> In traditional asp form, there is an action field in a form, any time
> the
> page is valid, after click the submit button, the next page comes up
> based
> on
> the value in the action field.
> In asp.net, in the sumit_click sub, after validating the all the fields
> in
> a
> form, do you always use response.redire ct or reponse.transfe r to go to
> the
> next page, any other ways? what's the exactly difference or which one
> will
> be
> better?
> --
> Betty


Jan 27 '06 #4
OK, I understand you what you mean. For the session expiration issue.
I have heared I can change session expiration default value from 20 min.
to longer time in web.config file, what I don't know how yet.
--
Betty
"Marina Levit [MVP]" wrote:
It all depends on your flow. In the case of the first page really only
collecting parts of the data, I wouldn't really insert that into a table
that holds only permanent custom requests. My example was pointing out that
typically a page will deal with its own data, and that was an example i
gave. I didn't mean to imply that it must always save its data to the
database even when it logically doesn't make sense to do so.

In your scenario it may make sense to hold on to the data in session
variables, redirect to the next page, etc, until you are ready to add data
to the database. In this case you are vulnerable to session time out
situations, although it may be acceptable for your application.

"c676228" <be****@communi ty.nospam> wrote in message
news:7D******** *************** ***********@mic rosoft.com...
Thank you, Marina, for your expert opinions.
Your reply give me a chance to ask you another question.
Let's assume I inserted a row of user data in the first web form, at that
time,
the web form doesn't present the credit card information for payment yet
or
I still need a couple more forms to collect more user data.
after user input other data/credit card number etc. and the payment or
other insert action in other forms are failed, what should I do with the
user
data I inserted to the tables in the former pages already?
--
Betty
"Marina Levit [MVP]" wrote:
You would usually use Response.Redire ct. There is also Server.Transfer ,
but
that transfers the page without letting the client browser know, so the
old
page would still be in the URL. In what I've seen, Response.Redire ct is a
pretty standard way to do it.

Also, submit_click would normally not just validate the fields - it would
also process the page. So you would not redirect to another page to have
it
add a row in the database, for example. You would do it right in your
event
handler, then redirect to the next page that is the logical next page in
the
application.

"c676228" <be****@communi ty.nospam> wrote in message
news:6B******** *************** ***********@mic rosoft.com...
> Hi all,
> In traditional asp form, there is an action field in a form, any time
> the
> page is valid, after click the submit button, the next page comes up
> based
> on
> the value in the action field.
> In asp.net, in the sumit_click sub, after validating the all the fields
> in
> a
> form, do you always use response.redire ct or reponse.transfe r to go to
> the
> next page, any other ways? what's the exactly difference or which one
> will
> be
> better?
> --
> Betty


Jan 27 '06 #5
Hi Betty,

If you're using ASP.NET 2.0 to build the web application, you can also
consider the following means:

1. Use the cross-page post back to post one webform page to another webform
page, thus, the form data on previous form can be forwareded to the next
form page through buildin means. Also, cross-page post allow us to access
control collection in previous page from target page.

#Cross-Page Posting in ASP.NET Web Pages
http://msdn2.microsoft.com/en-us/library/ms178139.aspx

2. ASP.NET 2.0 provide a buildin Wizard web server control which can help
provide wizard/steps based work flow on single page. This is also a
possible approach(put all the input in single page).

#Wizard Web Server Control (Visual Studio)
http://msdn2.microsoft.com/en-us/lib...US,VS.80).aspx

Hope this also helps.

Steven Cheng
Microsoft Online Support

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

--------------------
| Thread-Topic: web forms flow
| thread-index: AcYjewl2EaALd/aURjWDwU9lh5MCF Q==
| X-WBNR-Posting-Host: 12.25.78.230
| From: "=?Utf-8?B?YzY3NjIyOA= =?=" <be****@communi ty.nospam>
| References: <6B************ *************** *******@microso ft.com>
<#u************ *@tk2msftngp13. phx.gbl>
<7D************ *************** *******@microso ft.com>
<eB************ **@TK2MSFTNGP14 .phx.gbl>
| Subject: Re: web forms flow
| Date: Fri, 27 Jan 2006 11:51:17 -0800
| Lines: 82
| Message-ID: <93************ *************** *******@microso ft.com>
| MIME-Version: 1.0
| Content-Type: text/plain;
| charset="Utf-8"
| Content-Transfer-Encoding: 7bit
| X-Newsreader: Microsoft CDO for Windows 2000
| Content-Class: urn:content-classes:message
| Importance: normal
| Priority: normal
| X-MimeOLE: Produced By Microsoft MimeOLE V6.00.3790.0
| Newsgroups: microsoft.publi c.dotnet.framew ork.aspnet
| NNTP-Posting-Host: TK2MSFTNGXA03.p hx.gbl 10.40.2.250
| Path: TK2MSFTNGXA02.p hx.gbl!TK2MSFTN GXA01.phx.gbl!T K2MSFTNGXA03.ph x.gbl
| Xref: TK2MSFTNGXA02.p hx.gbl
microsoft.publi c.dotnet.framew ork.aspnet:3741 23
| X-Tomcat-NG: microsoft.publi c.dotnet.framew ork.aspnet
|
| OK, I understand you what you mean. For the session expiration issue.
| I have heared I can change session expiration default value from 20 min.
| to longer time in web.config file, what I don't know how yet.
| --
| Betty
|
|
| "Marina Levit [MVP]" wrote:
|
| > It all depends on your flow. In the case of the first page really only
| > collecting parts of the data, I wouldn't really insert that into a
table
| > that holds only permanent custom requests. My example was pointing out
that
| > typically a page will deal with its own data, and that was an example i
| > gave. I didn't mean to imply that it must always save its data to the
| > database even when it logically doesn't make sense to do so.
| >
| > In your scenario it may make sense to hold on to the data in session
| > variables, redirect to the next page, etc, until you are ready to add
data
| > to the database. In this case you are vulnerable to session time out
| > situations, although it may be acceptable for your application.
| >
| > "c676228" <be****@communi ty.nospam> wrote in message
| > news:7D******** *************** ***********@mic rosoft.com...
| > > Thank you, Marina, for your expert opinions.
| > > Your reply give me a chance to ask you another question.
| > > Let's assume I inserted a row of user data in the first web form, at
that
| > > time,
| > > the web form doesn't present the credit card information for payment
yet
| > > or
| > > I still need a couple more forms to collect more user data.
| > > after user input other data/credit card number etc. and the payment
or
| > > other insert action in other forms are failed, what should I do with
the
| > > user
| > > data I inserted to the tables in the former pages already?
| > > --
| > > Betty
| > >
| > >
| > > "Marina Levit [MVP]" wrote:
| > >
| > >> You would usually use Response.Redire ct. There is also
Server.Transfer ,
| > >> but
| > >> that transfers the page without letting the client browser know, so
the
| > >> old
| > >> page would still be in the URL. In what I've seen, Response.Redire ct
is a
| > >> pretty standard way to do it.
| > >>
| > >> Also, submit_click would normally not just validate the fields - it
would
| > >> also process the page. So you would not redirect to another page to
have
| > >> it
| > >> add a row in the database, for example. You would do it right in
your
| > >> event
| > >> handler, then redirect to the next page that is the logical next
page in
| > >> the
| > >> application.
| > >>
| > >> "c676228" <be****@communi ty.nospam> wrote in message
| > >> news:6B******** *************** ***********@mic rosoft.com...
| > >> > Hi all,
| > >> > In traditional asp form, there is an action field in a form, any
time
| > >> > the
| > >> > page is valid, after click the submit button, the next page comes
up
| > >> > based
| > >> > on
| > >> > the value in the action field.
| > >> > In asp.net, in the sumit_click sub, after validating the all the
fields
| > >> > in
| > >> > a
| > >> > form, do you always use response.redire ct or reponse.transfe r to
go to
| > >> > the
| > >> > next page, any other ways? what's the exactly difference or which
one
| > >> > will
| > >> > be
| > >> > better?
| > >> > --
| > >> > Betty
| > >>
| > >>
| > >>
| >
| >
| >
|

Jan 30 '06 #6
Hi Steven,
Thank you so much. I am using asp.net 1.1. I didn't look at asp.net 2.0 yet.
I am still using visual studio.net 2003. If I download 2005. are all those
web server controls for asp.net 2.0 in vs.net 205?

--
Betty
"Steven Cheng[MSFT]" wrote:
Hi Betty,

If you're using ASP.NET 2.0 to build the web application, you can also
consider the following means:

1. Use the cross-page post back to post one webform page to another webform
page, thus, the form data on previous form can be forwareded to the next
form page through buildin means. Also, cross-page post allow us to access
control collection in previous page from target page.

#Cross-Page Posting in ASP.NET Web Pages
http://msdn2.microsoft.com/en-us/library/ms178139.aspx

2. ASP.NET 2.0 provide a buildin Wizard web server control which can help
provide wizard/steps based work flow on single page. This is also a
possible approach(put all the input in single page).

#Wizard Web Server Control (Visual Studio)
http://msdn2.microsoft.com/en-us/lib...US,VS.80).aspx

Hope this also helps.

Steven Cheng
Microsoft Online Support

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

--------------------
| Thread-Topic: web forms flow
| thread-index: AcYjewl2EaALd/aURjWDwU9lh5MCF Q==
| X-WBNR-Posting-Host: 12.25.78.230
| From: "=?Utf-8?B?YzY3NjIyOA= =?=" <be****@communi ty.nospam>
| References: <6B************ *************** *******@microso ft.com>
<#u************ *@tk2msftngp13. phx.gbl>
<7D************ *************** *******@microso ft.com>
<eB************ **@TK2MSFTNGP14 .phx.gbl>
| Subject: Re: web forms flow
| Date: Fri, 27 Jan 2006 11:51:17 -0800
| Lines: 82
| Message-ID: <93************ *************** *******@microso ft.com>
| MIME-Version: 1.0
| Content-Type: text/plain;
| charset="Utf-8"
| Content-Transfer-Encoding: 7bit
| X-Newsreader: Microsoft CDO for Windows 2000
| Content-Class: urn:content-classes:message
| Importance: normal
| Priority: normal
| X-MimeOLE: Produced By Microsoft MimeOLE V6.00.3790.0
| Newsgroups: microsoft.publi c.dotnet.framew ork.aspnet
| NNTP-Posting-Host: TK2MSFTNGXA03.p hx.gbl 10.40.2.250
| Path: TK2MSFTNGXA02.p hx.gbl!TK2MSFTN GXA01.phx.gbl!T K2MSFTNGXA03.ph x.gbl
| Xref: TK2MSFTNGXA02.p hx.gbl
microsoft.publi c.dotnet.framew ork.aspnet:3741 23
| X-Tomcat-NG: microsoft.publi c.dotnet.framew ork.aspnet
|
| OK, I understand you what you mean. For the session expiration issue.
| I have heared I can change session expiration default value from 20 min.
| to longer time in web.config file, what I don't know how yet.
| --
| Betty
|
|
| "Marina Levit [MVP]" wrote:
|
| > It all depends on your flow. In the case of the first page really only
| > collecting parts of the data, I wouldn't really insert that into a
table
| > that holds only permanent custom requests. My example was pointing out
that
| > typically a page will deal with its own data, and that was an example i
| > gave. I didn't mean to imply that it must always save its data to the
| > database even when it logically doesn't make sense to do so.
| >
| > In your scenario it may make sense to hold on to the data in session
| > variables, redirect to the next page, etc, until you are ready to add
data
| > to the database. In this case you are vulnerable to session time out
| > situations, although it may be acceptable for your application.
| >
| > "c676228" <be****@communi ty.nospam> wrote in message
| > news:7D******** *************** ***********@mic rosoft.com...
| > > Thank you, Marina, for your expert opinions.
| > > Your reply give me a chance to ask you another question.
| > > Let's assume I inserted a row of user data in the first web form, at
that
| > > time,
| > > the web form doesn't present the credit card information for payment
yet
| > > or
| > > I still need a couple more forms to collect more user data.
| > > after user input other data/credit card number etc. and the payment
or
| > > other insert action in other forms are failed, what should I do with
the
| > > user
| > > data I inserted to the tables in the former pages already?
| > > --
| > > Betty
| > >
| > >
| > > "Marina Levit [MVP]" wrote:
| > >
| > >> You would usually use Response.Redire ct. There is also
Server.Transfer ,
| > >> but
| > >> that transfers the page without letting the client browser know, so
the
| > >> old
| > >> page would still be in the URL. In what I've seen, Response.Redire ct
is a
| > >> pretty standard way to do it.
| > >>
| > >> Also, submit_click would normally not just validate the fields - it
would
| > >> also process the page. So you would not redirect to another page to
have
| > >> it
| > >> add a row in the database, for example. You would do it right in
your
| > >> event
| > >> handler, then redirect to the next page that is the logical next
page in
| > >> the
| > >> application.
| > >>
| > >> "c676228" <be****@communi ty.nospam> wrote in message
| > >> news:6B******** *************** ***********@mic rosoft.com...
| > >> > Hi all,
| > >> > In traditional asp form, there is an action field in a form, any
time
| > >> > the
| > >> > page is valid, after click the submit button, the next page comes
up
| > >> > based
| > >> > on
| > >> > the value in the action field.
| > >> > In asp.net, in the sumit_click sub, after validating the all the
fields
| > >> > in
| > >> > a
| > >> > form, do you always use response.redire ct or reponse.transfe r to
go to
| > >> > the
| > >> > next page, any other ways? what's the exactly difference or which
one
| > >> > will
| > >> > be
| > >> > better?
| > >> > --
| > >> > Betty
| > >>
| > >>
| > >>
| >
| >
| >
|

Jan 30 '06 #7
Thanks for your response Betty,

Yes, of course. If you're using VS 2005(or visual web developer express),
all the buildin ASP.NET 2.0 webcontrols are available in the ToolBox. Also,
some ASP.NET 1.1 compatible controls can also be used in aspx page(add them
manually) though they're not in toolbox by default. Anyway, you can have
a look at the wizard control in 2.0.

Hope this helps.

Steven Cheng
Microsoft Online Support

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

Feb 1 '06 #8
Steven,
If I download VS 2005. Would my old asp.net application developed with .net
2003 will have any problems? Is it Ok to install both .net 2003 and VS 2005?
Thank you
--
Betty
"Steven Cheng[MSFT]" wrote:
Thanks for your response Betty,

Yes, of course. If you're using VS 2005(or visual web developer express),
all the buildin ASP.NET 2.0 webcontrols are available in the ToolBox. Also,
some ASP.NET 1.1 compatible controls can also be used in aspx page(add them
manually) though they're not in toolbox by default. Anyway, you can have
a look at the wizard control in 2.0.

Hope this helps.

Steven Cheng
Microsoft Online Support

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

Feb 15 '06 #9
You can install/run simultaneously both
VS 2003/.Net 1.1 and VS 2005/.net 2005.

No problem...

Just make sure your 1.1 apps are targeting the .net framework 1.1,
and that the 2.0 apps are targeting the .net framework 2.0.

You can do that in the "ASP.NET" tab of the Application's Properties in the IIS Manager.

Juan T. Llibre, asp.net MVP
aspnetfaq.com : http://www.aspnetfaq.com/
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
=============== =============== =====
"c676228" <be****@communi ty.nospam> wrote in message
news:F0******** *************** ***********@mic rosoft.com...
Steven,
If I download VS 2005. Would my old asp.net application developed with .net
2003 will have any problems? Is it Ok to install both .net 2003 and VS 2005?
Thank you
--
Betty "Steven Cheng[MSFT]" wrote:
Thanks for your response Betty,

Yes, of course. If you're using VS 2005(or visual web developer express),
all the buildin ASP.NET 2.0 webcontrols are available in the ToolBox. Also,
some ASP.NET 1.1 compatible controls can also be used in aspx page(add them
manually) though they're not in toolbox by default. Anyway, you can have
a look at the wizard control in 2.0.

Hope this helps.

Steven Cheng
Microsoft Online Support

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

Feb 15 '06 #10

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

Similar topics

1
3754
by: KK | last post by:
Windows Forms Inheritance, Incomplete? I was playing around with Windows Forms and found out this Forms Inheritance feature. The moment I saw that, I felt this can be used effectively if the application contains couople of forms which have a consistant look and also shares SOME similar functionality between the forms.
2
2203
by: KK | last post by:
** Posting it here cause after couple of days no body responded.** I was playing around with Windows Forms and found out this Forms Inheritance feature. The moment I saw that, I felt this can be used effectively if the application contains couople of forms which have a consistant look and also shares SOME similar functionality between the forms.
1
2072
by: Henk | last post by:
I have to do some technical documentation for a client. The application that needs to be documented is an Ms Access one. One of the things I want to do is make an overveiw of the so-called form flow. Is there a way to import the formnames in one go and display them as a shape (each form a shape). Is there a way to import a list from a table and display them as shapes? Many thanks in advance, Henk
11
1904
by: Patrick Fisher | last post by:
Later versions of Access have form property called Moveable which, if set, prevents users from moving forms yet still allows the form to retain a border. Access 97 does not have this property therefore the only way to prevent users from moving forms is to have forms with no borders, is there a way in Access 97 to mimic the Moveable Property? Patrick
2
1026
by: Charlie Tame | last post by:
Definitely a newcomer to C# (in fact to any programming after some years away) and I'm finding lots of examples but they are sometimes confusing. My concept of (say) QuickBasic was that you write a main program that calls subroutines, thus breaking the thing up into manageable parts. I started off assuming that in C# main() would be the program flow with (say) several forms called in a similar way, each form doing it's part then...
4
5646
by: 23s | last post by:
I had this problem in the past, after a server reformat it went away, and now after another server reformat it's back again - no clue what's doing it. Here's the flow: Website root is public, no SSL no forms auth. One of the subfolders in the public area is the root of a "protected" area; SSL is required from this subfolder on forward and a web.config in the subfolder specifies forms authentication. From the public area, I provide a...
4
9917
by: Scott Johnson | last post by:
Hi! Is there a way to "preload" a form using a thread or something else so that my user doesn't have to wait 5 seconds (initializing time) between forms? Some of these forms have tab strips with lots of controls and database queries on them and I would like to try to have some(all) of the preloading of the next form and controls done in the background while a user is still entering data. (For example, my user visits screen A then B then...
5
2746
by: ebernedo | last post by:
Hey guys, I'm new here and also pretty new to access I'm creating a database at work, and need to be able to search things within it to find the right part number in our case... heres a sample of what the table looks like: Part # Size Press A FlowRate Press B FlowRate Press C Flow Rate 124 1 0.52 0.82 0.65 125 2 0.23 ...
12
11117
by: raylopez99 | last post by:
Keywords: scope resolution, passing classes between parent and child forms, parameter constructor method, normal constructor, default constructor, forward reference, sharing classes between forms. Here is a newbie mistake that I found myself doing (as a newbie), and that even a master programmer, the guru of this forum, Jon Skeet, missed! (He knows this I'm sure, but just didn't think this was my problem; LOL, I am needling him) If...
0
9569
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
10558
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...
0
10318
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
10302
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
9130
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...
1
7608
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
5503
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
5636
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
3
2975
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.