문제

how to update a control inside update panel without reloading(postpack) the update panel please give an example code with C# if you could. so the update should happen in client side.

Thank you,

도움이 되었습니까?

해결책

템플릿 프로비저닝 중에 목록이 작성 될 때 템플리트의 모든 목록이 새 ID를 가져 오는 것입니다.

비 기존 목록에 필터 및 필드 참조를 참조하십시오.웹 파트가 URL을 통해 목록을 참조하는 동안.필터 웹 파트는 하드 코딩 된 ID를 사용합니다.

웹 파트의 연결을 수정하는 사용자 정의 코드를 재구성하거나 추가하는 것입니다.

다른 팁

If the control is inside an update panel, all you need to do is do all of your postbacks inside that update panel. So if you have a button event or any server side event that is executed inside the update panel, any control within the update panel will update without a postback

Update panels are tricky and does many things that you cant handle. I recommend an javascript framework with ajax postbacks

You can see the answer of the following question How to configure UpdatePanel so that it should render empty first time and later after page render refreshes and get data asynchronously , this refreshes update panel from javascript

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top