Saturday, September 22, 2012

Stable DIV while asynchronous postback in ASP.NET








Div Scoll during page postback.


Hello Guys,

If you have any div tag inside update panel, it got displaced during postback of page on checkbox index change or dropdown index change. I had struggled a lot for this issue.

I Found very simple one line solution for this issue

just add below line in div CSS

.DivCSS
{
position: absolute; 
}

No comments:

Post a Comment

Managing Session Integrity in .NET Core Web Applications: A Middleware Approach

 In our journey of developing a .NET Core web application, we encountered a peculiar challenge with our time-tracking feature. The applicati...