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

Home Posts Topics Members FAQ

AutoPostBack

Hello

I have several controls in the center and bottom of the page that have to
perform some server side events. Is there a way that I can force the browser
to remember the location of the last control, i.e. if I click on a
dropdownlist that fires an event, for the browser to return to the same
control after postback?
Nov 19 '05 #1
6 3087
The server code should send back to the client the id of the control that
initiated the postback. In body's onload event you can send focus on the
control with matching id.

Eliyahu

"walterd" <wa*****@ananzi .co.za> wrote in message
news:eH******** ******@tk2msftn gp13.phx.gbl...
Hello

I have several controls in the center and bottom of the page that have to
perform some server side events. Is there a way that I can force the browser to remember the location of the last control, i.e. if I click on a
dropdownlist that fires an event, for the browser to return to the same
control after postback?

Nov 19 '05 #2
You will need to use client side coding to set the focus of any particular
field.

In order to direct that focus from the server side you could set the value
of a hiddent HTML field to the name or index of the desired control.

Then the load event for the client page, you need to setfocus to the desired
control using that value


"walterd" <wa*****@ananzi .co.za> wrote in message
news:eH******** ******@tk2msftn gp13.phx.gbl...
Hello

I have several controls in the center and bottom of the page that have to
perform some server side events. Is there a way that I can force the
browser
to remember the location of the last control, i.e. if I click on a
dropdownlist that fires an event, for the browser to return to the same
control after postback?

Nov 19 '05 #3
SMARTNAVIGATION in asp.net is for "persisting the scroll position when moving
from page to page." and "persisting element focus between navigations."

but , if you google, you will find lot of reports/questions abt smart
navigation not working on browsers other than IE (and some cases in IE too!)
...

SMARTNAVIGATION is the simplest way, but this feature may be limited to
latest IE users.

http://search.microsoft.com/search/r...Navigation&s=1

it is also possible with a simple function .. have a function like below

/// <param name="ControlCl ientId">pass the Control.ClientI D of the server
control you need focus on</param>
private void SetFocus(string ControlClientId )
{
System.Text.Str ingBuilder strJScript = new System.Text.Str ingBuilder();
strJScript.Appe nd("<SCRIPT>") ;
strJScript.Appe nd("document.fo rms[0].");
strJScript.Appe nd(ControlClien tId);
strJScript.Appe nd(".focus();") ;
strJScript.Appe nd("</SCRIPT>");
Page.RegisterSt artupScript("fo cus",strJScript .ToString());
}

from each post back event, say inside a ddl_chnage event make a call like
below..

SetFocus(ddl.Cl ientID);

you can build a more Sophisticated solution by setting a hidden control with
the name of last changed HTML control (using onchange javascript event) and
call this same function to set focus on that..
"walterd" wrote:
Hello

I have several controls in the center and bottom of the page that have to
perform some server side events. Is there a way that I can force the browser
to remember the location of the last control, i.e. if I click on a
dropdownlist that fires an event, for the browser to return to the same
control after postback?

Nov 19 '05 #4
walterd wrote:
Hello

I have several controls in the center and bottom of the page that have to
perform some server side events. Is there a way that I can force the browser
to remember the location of the last control, i.e. if I click on a
dropdownlist that fires an event, for the browser to return to the same
control after postback?


This can be easily done with some anchor tags and javascript. See

http://dotnetjunkies.com/Article/E47...CB3C4A1AB.dcik
--
Rob Schieber
Nov 19 '05 #5
Here's some code that will return the window to whatever position it
was at before the PostBack:

<input type="hidden" name="MouseY" value="0" size="4">

<script language="JavaS cript1.2">
<!--

// Detect if the browser is IE or not.
// If it is not IE, we assume that the browser is NS.
var IE = document.all?tr ue:false

// If NS -- that is, !IE -- then set up for mouse capture
if (!IE) document.captur eEvents(Event.M OUSEDOWN)

// Set-up to use getMouseXY function onMouseMove
document.onmous emove = getMouseXY;

// Temporary variables to hold mouse x-y pos.s
var tempY = 0

// Main function to retrieve mouse x-y pos.s

function getMouseXY(e) {
try
{
if (IE) { // grab the x-y pos.s if browser is IE
tempY = document.docume ntElement.scrol lTop;//event.clientY +
document.body.s crollLeft
} else { // grab the x-y pos.s if browser is NS
tempY = e.pageY
}

// catch possible negative values in NS4
if (tempY < 0){tempY = 0}

if (window.navigat or.appName.toLo werCase().index Of("netscape") > -1)
{
document.forms["form1"].MouseY.value = tempY;
}
else
{
document.form1. MouseY.value = tempY
}
}
catch (e)
{}

return true
}

<%
if (Page.Request["MouseY"] != null && Page.Request["MouseY"].Length >
0)
{
Response.Write( "window.scrollT o(0, " + Page.Request["MouseY"] + ");");

}
%>

//-->

</script>

Best of luck,

Matt Furnari

Nov 19 '05 #6
You don't even need the anchor tags!!

Just enter the lines:

<script language="JavaS cript">
location.href=" #<%= Request.Form("_ _EVENTTARGET") %>";
</script>

in front of the last </form> tag and it automatically scrolls to the last
autopost item.

"Rob Schieber" <sc******@hotma il.com> wrote in message
news:uc******** ******@tk2msftn gp13.phx.gbl...
walterd wrote:
Hello

I have several controls in the center and bottom of the page that have to perform some server side events. Is there a way that I can force the browser to remember the location of the last control, i.e. if I click on a
dropdownlist that fires an event, for the browser to return to the same
control after postback?


This can be easily done with some anchor tags and javascript. See

http://dotnetjunkies.com/Article/E47...CB3C4A1AB.dcik
--
Rob Schieber

Nov 19 '05 #7

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

Similar topics

2
6587
by: Susan van Houen | last post by:
Hi All, How do I intercept an autopostback on the client side and prevent it from executing the submit? In classic ASP I used to intercept the on_submit and just return false;
8
9367
by: Matthew Louden | last post by:
why need to set autopostback property to be true?? I know autopostback event means to send the form to the server automatically. I tried checkbox, checkbox list, radio button, and radio button list, and they all need to set autopostback property to be true, in order to make the event of the control fires. I know this is the must, but I dont know why. Please advise! Thanks!
4
9052
by: Scott M. | last post by:
If I put RequiredFiledValidators on a page and set them up with corresponding TextBoxes everything works just fine. If I add a DropDownList and set its AutoPostBack to True, I am able to post data to the server WITHOUT the validators invoking their validation. It seems that the easiest solution would have been for MS to simply give the DropDownList control a "CausesValidation" property, but it does not have one. How can I invoke the...
6
327
by: Sunil | last post by:
Dear All I am a bit confused about AutoPost Back. My concept about AutoPostBack is that If AutoPostBack i "TRUE" for a Web Form the Web Form Goes back to the server and displays a fresh copy of th Web Form on the Browser. While If an AutoPostBack is False then the Web Form Stays on the browser and does not take a trip to the server Please let me know If I am saying correct Any help much appreciated
0
1250
by: Scott | last post by:
Hi. I'm having some problems with AutoPostBack in my asp.net pages running on Windows 2003/IIS 6. The pages are really simple. For example, one of them contains two dropDownLists. The firstdrop down has two items and AutoPostBack is set to true. When a user selects an item in the first drop down, the values for the second drop down are filled in the SelectedIndexChanged event depending on what the user selected. Simple stuff. The pages...
2
11621
by: Tom Edelbrok | last post by:
Question: Why does a button event (ie: Button1_Click) get executed on the first click for a textbox control which has 'autopostback=false', but doesn't get executed until a second click when 'autopostback=true'? For example, I set up a textbox control with autopostback=false, and a command button. If I run my page (main.aspx) I can type data into the textbox control, then click on the button. The Button1_Click event fires immediately. ...
3
4043
by: Brad | last post by:
The first text on my form is a numeric field. I have a javascript that runs on this field for onkeyup (validate the key strokes and modifies fields on the screen) but when I do this and have the autopostback on, the autopostback does not trigger. The autopostback will trigger if I hit the enter key while in the textbox but not when I leave focus. Here is the code for the textbox. <asp:textbox class="required" AutoPostBack="True"...
2
5309
by: rn5a | last post by:
Assume that a user control has a TextBox (Page1.ascx) <asp:TextBox ID="txtName" runat="server"/> I am encapsulating the above user control in a ASPX page named Page1.aspx i.e. the ASPX page displays a single TextBox. There's also a CheckBox in this ASPX page within the <formtags. Note that the CheckBox IS NOT a part of the user control. It has been explicitly added to the Form existing in the ASPX page. The AutoPostBack property of...
0
3741
by: andy | last post by:
Hi, I have a form uses several dropdownlists to narrow a set of criteria. ( This is in turn used to control what is shown on a gridview. ) With each, the user selects an entry and then the next dropdownlist uses that control's selected value to drive what it shows. They're all set to autopostback. Everything works fine except where one of the levels only has one entry. This seems to mess up the next level down and you see the wrong
6
4848
by: Peter | last post by:
ASP.NET 2.0 Visual Studio 2008 I have the following code and when the textbox displays and I press Enter while in the text box I get AutoPostBack, how do I stop AutoPostBack? TextBox txt = new TextBox(); txt.MaxLength = parm.MaxLength; txt.ID = parm.ParameterNameID; txt.Text = "12345";
0
9576
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
10568
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
10323
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
10311
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
10074
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
9138
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
5516
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
5647
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
3
2988
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.