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

Home Posts Topics Members FAQ

Order of Events

I have an aspx page with multiple radio button lists and I am all tangled up
in the processing logic. I suspect that I do not understand the correct
order of the various events.

I have autopostback enabled on the radio button lists. When the user clicks
on a selection in one of the radio button lists I trap that in the event
handler and then redirect the user to an appropriate page. If the user press
"Back" and returns to the page the previous selection is still shown and if
he clicks on another selection I still get the same redirect as before - it
is as if the previous event fires again?

I tried adding some logic in the page load area to try to manage this but I
cannot find the right combination.

Specific questions:

- when the user returns via the "Back" button does page load fire again,
and if so - will IsPostBack be true?
- When the user clicks a selection in one of the radio button lists
(autopostback is enabled) does a page postback occur? If so, is that before
or after the radio button selected index event fires?

Appreciate and help here

Wayne
Nov 19 '05 #1
1 1384
The way I understand it when hitting back you're seeing your browsers
cached version of the page and a page load has not occured. If
autopostback is enable and you click the radio button a post back is
occuring. easy way to figure this is to comment out the code for your
radio buttons and add

if (Page.IsPostBac k)
{
Response.Write( "Page is in postback");
}
else
{
Response.Write( "You are in Page Load NO Post Back has occured");
}

Nov 19 '05 #2

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

Similar topics

2
1481
by: Sheila Jones | last post by:
Hello, I have a couple of textbox controls which each fire TextChanged events. AutoPostBack is false for both controls, so the events only actually fire when another control causes a postback. However, the TextChanged events always seem to happen in the same order, regardless of which box was changed first. Is there any way to ensure that the events fire on the server in the same order they occurred in the browser (other than setting...
3
1626
by: serge calderara | last post by:
Dear all, I am trying to understand postack event ordering. for that I have a web form with a text box, listbox and button server controls. Then I add a response.write in eaxh control event changed. When I run my application I proceed in following order : First I change a text in the text box Then I select an item in the list box
23
4035
by: roman | last post by:
Hi, I would like to have two actions for one event. But I want the second action to trigger when the first one action completes. Is it possible to do this in javascript? I'm using the onclick event. Thanks, Roman
1
1472
by: cmay | last post by:
Can someone advise on this issue? We are seeing a page where, on the first load the base page (the class our page inherits from) fires it's PageLoad event first, followed by our Page's PageLoad. On postback we see the reverse order taking place, with the Base Page firing last. Can someone tell me if this is the expected behavior? Are you not
7
3510
hodgeman
by: hodgeman | last post by:
Hello thescripts forums users... I've found a lot of answers to problems I've had in the past from this forum, and this is the first mySQL query issue I haven't been able to find an answer from anywhere so thought my time first post should be here. With that out the way... I have a website I've built for my day job rotoruaNZ.com/events that I'd like to improve upon. We have numerous events posted on our website that take place around...
0
9706
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
10575
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
10319
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
10076
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
7616
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
6851
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();...
0
5651
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4297
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 we have to send another system
3
2990
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.