开发者

Problem with asp.net C# focus, page_load

I'm really new to asp.net and have a couple of issues I'm trying to get fixed. I have s开发者_如何学运维ome programming experience, but it is not asp.net. However, I've been able to follow the code enough to make other changes in the code to fix other issues.

The first is this:

I'm working with a form that has a calculate amount method that gets called when the user inputs a value in an amount text box. The same method gets called when the next control, number of payments, has a value.

So in the two controls:

onTextChanged="ctrlName_textChanged"

Then in the code behind, the textchanged method does:

calculateAmount();

The problem is after the amount is calculated and returns, the focus seems to get reset and the user has to tab all the way back through the form to the place they were.

The textboxes in question are in a panel that starts out hidden and is made visible conditionally.

My apologies if I have not used the proper .net terminology.

It looks like the same issue may be causing my second problem. When the user types in an amount and then tabs and quickly adds the number of payments, you can see the amount get calculated correctly and very shortly displays the proper total in the total amount text box. However, even though it shows for that short time, the tab order again gets reset as well as the total amount value.

I've looked at different methods to try and fix the focus issue.

In the textchanged method, I tried using something like:

Session["myval"] = "someval";

Then tried to check against that in Page_Load with something like: if(Session["myval"] != null) { this.NextControl_Name.Focus(); }

but it didn't ever work correctly.

I also tried to set a cookie in that same textchanged method using something like this:

 Response.Cookies["myval"].Value = "somevalue";

Then tried to check that in Page_Load using something like the previous if block above but using Request.Cookies["myval"] as the source.

Is there a good reference with some really clear code samples I can look at for this type of implementation?

Thank you in advance,

C.


Sounds like you have a postback problem...

Remember that the web is stateless. This means that when you have a web page rendered out in .NET and you attach an event that executes serverside code... it does an HTTP POST back to the server which is effectively a new page request. The Page_Load method will fire again as well as your bound event. So your onTextChanged event is firing a new request back to the server. This is why you see the focus reset and why when you tab quickly, the value seems to disappear magically.

You can do one of several things, you can implement the UpdatePanel in the AjaxControlToolkit http://www.asp.net/ajax/ajaxcontroltoolkit/samples/

you can use PageMethods and do your validation with javascript and jQuery (or other js library) see page method info http://www.geekzilla.co.uk/View30F417D1-8E5B-4C03-99EB-379F167F26B6.htm

Hope this helps

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜