Showing posts with label http. Show all posts
Showing posts with label http. Show all posts

Saturday, March 24, 2012

example "Using the ASP.Net "Atlas" XmlDataSource control" doesnt work!

on :http://atlas.asp.net/docs/atlas/doc/data/default.aspx#XmlDataSource, the "Using the ASP.Net "Atlas" XmlDataSource control" doesn't work.
On click of the link, I redirect it to the http://www.asp.net/forums page.

Can someone help me solving the problem?

Thanks in advace,
Stefano

Stefano,

This appears to work for me. Can you please try it again in a new browser window? Alternatively, you can go tohttp://atlas.asp.net/docs/atlas/doc/data/default.aspxand then scroll down.

Thanks,

Shanku


Sorry, I did not mean to say that the link does not work, but that the example does not work.
If I click "Run it" button in the examples it opens the page: http://atlas.asp.net/docs/atlas/samples/data/XmlDataSource.aspx.
If I click the "Sample Post" link, I redirect to the http://www.asp.net/forums page.

example "Returning a DataTable" doesnt work!

on :http://atlas.asp.net/quickstart/default.aspx, the "Returning a DataTable" doesn't work( on atlas.asp.net. and on my local server too) I don't understand!

Any data are binding!

I'm using IE6! I see somewhere that it's not <binding> but <web:binding> it doesn't work better!

Help me please

ALCINA.

thanks to Garbin. he has provide one nice example in
http://forums.asp.net/1198570/ShowPost.aspx

check it out

Wednesday, March 21, 2012

Events are firing at the wrong time, I dont know how to stop them

Hi,

Here are the files for a very simple project containing some user controls.

http://www.wmscanner.com/Happiness.zip

If you open the fileUserControls/StrikeDistance.ascx.cs you will be able to quickly see three event handlers that I have marked with comments.

My problem is that these event handlers are being fired on every single postback even when I don't want them to fire.

The controls contain an AJAX SliderExtension, and I want the event handlers to fire ONLY after a user has adjusted one of the sliders. Instead, the events are firing willy nilly, especially on the first couple of postbacks.

I have made the attached project very simple, to isolate the problem, so it should be pretty easy for someone expert in control lifecycles to step through and see where my code is "improveable" :)

Many, many thanks in advance, i've been working on this one problem an entire day now :)

Ben

OK, I found the problem and it was my fault. I was setting the sliderextender's value to 0.1 when it's "Decimals" property was set to zero. The slider extender was resetting the text of its bound control, and that was firing the unwanted events.