Don't know where you got that div tag thing from. About the only thing you
can do is either use an iFrame, which doesn't really solve the problem but
puts a bandaid over it, or you can try turning on smart navigation which is
supposed to refresh only the changed items on the screen. Even this works
marginal for applications and it introduces a whole slew of other unwanted
buggy 'features'.
I'd recommend that you just get smart about roundtripping data. For
instance, if you would cache some common data (stuff contained in dropdown
lists for example) on one postback and bind it to controls then these
controls would not have to post back to get that data as they would already
be there - simple stuff like that makes for a pleasant user experience.
Also, I don't think users really mind the postback if it is quick and there
is not much delay. Users get pissed when it takes 5 seconds or more to make
different selections in a drop down for example and with good reason. Get
clever about viewstate, use server controls only when absolutely needed and
cache data whenever possible using the four levels of caching provided by
ASP.NET. Together, all of these improve the user experience, which is what
counts anyway. It's easy to build a web application, it's difficult to
master the skill of building a good web application.
--
Regards,
Alvin Bruney
Got Tidbits? Get it here
www.networkip.net/tidbits [quoted text, click to view] "Ahmed Hashem" <bekh@yall.com> wrote in message
news:edLYqEqtDHA.980@TK2MSFTNGP10.phx.gbl...
> Hi All;
> I hope that you can help me in replying to my question. I have a web form
> that have many post backs to get data from the web server. Every time I
use
> one of those post backs all the page is posted back to the server(This is
> not almost welcomes by the user). I want only the part only to be
refreshed
> or posted back(assuming that we put it in something like panel).
> I heared that I can use the <div> tage to fix this problem. I tried it but
> not working. If so is there any alternatives.
> I hope that you can kindly answer my question.
> Best Regards;
> Hashem
>
>