CodeVerge.Net Beta


   Explore    Item Entry   Register  Login  
Microsoft News
Asp.Net Forums
IBM Software
Borland Forums
Adobe Forums
Novell Forums

ASP.NET Web Hosting – 3 Months Free!



Zone: > NEWSGROUP > Asp.Net Forum > starter_kits_and_source_projects.internet_explorer_web_controls Tags:
Item Type: NewsGroup Date Entered: 6/26/2007 10:25:53 AM Date Modified: Subscribers: 0 Subscribe Alert
Rate It:
(NR, 0)
XPoints: N/A Replies: 3 Views: 64 Favorited: 0 Favorite
Can Reply:  No Members Can Edit: No Online: Yes
4 Items, 1 Pages 1 |< << Go >> >|
yesso
Asp.Net User
Problem with rendering of TabStrip in UpdatePanel, which will be load on async postbak...6/26/2007 10:25:53 AM

0/0

Hello,

i have an IEWEbControls.TabStrip in a UserControl. On my Default.aspx Page i have a Menu and a PlaceHolder...on select a Menu-Item the UserControl will be Load in the PlaceHolder.

In this case the TabStrip dont render correct. It renders like this:

<TabStrip
id="ctl14_tsVorsorge"
style="DISPLAY: inline-block; FONT-SIZE: 1em; WIDTH: 100%"
onwcready="JScript:try{document.form1.__ctl14_tsVorsorge_State__.value=selectedIndex}catch(e){}"
onSelectedIndexChange="JScript:document.form1.__ctl14_tsVorsorge_State__.value=event.index;if (getAttribute('_submitting') != 'true'){setAttribute('_submitting','true');try{__doPostBack('ctl14$tsVorsorge','');}catch(e){setAttribute('_submitting','false');}}"
tabSelectedStyle="background-color:#D6DDEE;color:#000000;"
tabHoverStyle="background-color:#D9D2CF;color:#000000;"
tabDefaultStyle="background-color:#396ead;font-family:verdana;border-style:solid;border-width:1px;border-color:black;font-weight:bold;color:#ffffff;text-align:center;"
selectedIndex="0">
</TabStrip>
 
Then i have placed the TabStrip direct to the Default.aspx Page to see what it renders to work correct, and it renders the following code to work:
 
 <input type="hidden" name="__TabStrip1_State__" id="__TabStrip1_State__" value="0" />
 <?XML:NAMESPACE PREFIX="TSNS" /><?IMPORT NAMESPACE="TSNS" IMPLEMENTATION="/webctrl_client/1_0/tabstrip.htc" />
<TSNS:TabStrip 
	id="_ctl4_tsVorsorge" 
	selectedIndex="0" 
	tabDefaultStyle="background-color:#396ead;font-family:verdana;border-style:solid;border-width:1px;border-color:black;font-weight:bold;color:#ffffff;text-align:center;" 
	tabHoverStyle="background-color:#D9D2CF;color:#000000;" 
	tabSelectedStyle="background-color:#D6DDEE;color:#000000;" 
	onSelectedIndexChange="JScript:document.frmIndex.___ctl4_tsVorsorge_State__.value=event.index;if (getAttribute('_submitting') != 'true'){setAttribute('_submitting','true');try{__doPostBack('_ctl4$tsVorsorge','');}catch(e){setAttribute('_submitting','false');}}" 
	onwcready="JScript:try{document.frmIndex.___ctl4_tsVorsorge_State__.value=selectedIndex}catch(e){}" 
	style="font-size:8pt;height:18px;width:100%;">
	<TSNS:Tab>Partner zur Vorsorge</TSNS:Tab>
	<TSNS:Tab>Vorsorgedaten</TSNS:Tab>
</TSNS:TabStrip>
 
yesso
Asp.Net User
Re: Problem with rendering of TabStrip in UpdatePanel, which will be load on async postbak...6/26/2007 12:16:52 PM

0/0

Now, i have added the missing code direct into the XAML-Source from the UserControl:

<input type="hidden" name="__<%= tsVorsorge.ClientID %>_State__" id="__<%= tsVorsorge.ClientID %>_State__" value="0" />

<?XML:NAMESPACE PREFIX="TSNS" /><?IMPORT NAMESPACE="TSNS" IMPLEMENTATION="/webctrl_client/1_0/tabstrip.htc" />

 

Sometimes it work only one TabChange but then it always done a Error in Internet Explorer...

 

what can i do ?

 

yesso
Asp.Net User
Re: Problem with rendering of TabStrip in UpdatePanel, which will be load on async postbak...6/27/2007 10:40:29 AM

0/0

Hello,

Remember: UserControl > TabStrip will be load on Button-Click in a Page > UpdatePanel > PlaceHolder

 

now i have looked to the http traffic about the http debugging tool "Fiddler" and saw: the hidden-field will never set/send to the client and in the fiddler-tool i saw that the

<?XML:NAMESPACE PREFIX="TSNS" /><?IMPORT NAMESPACE="TSNS" IMPLEMENTATION="/webctrl_client/1_0/tabstrip.htc" />

is rendered out every time, but in the dom of the browser (i looked with IE Developerbar ) than i can not see this xml-element...

 

have anyone a idea ?   

 

why i cannot see the xml-element in the dom of the

yesso
Asp.Net User
Re: Problem with rendering of TabStrip in UpdatePanel, which will be load on async postbak...6/28/2007 11:50:56 AM

0/0

Hi,

i think the hole problem is not from the control, if i set the hidden field into the page hardcoded it works but not really:

if i change the tab the servercode works and the page comes back and the it comes the following exception-window-message:

DE: Unbehandelte Ausnahme bei 0x7dd29501 in iexplore.exe: 0xC0000005: Zugriffsverletzung beim Lesen an Position 0x0000045f. 

In EN it means like this: Untreated exception by 0x7dd29501 in iexplore.exe: 0xC0000005: Access injury during the reading at position 0x0000045f. 

Then i can start the debugger about this window and become assambler code to see (here the ):

7DD294FE mov eax,dword ptr [esi+0Ch]

7DD29501 movzx eax,byte ptr [eax+45Fh]  (<---- it stays here when i bedin to debug)

7DD29508 mov ecx,dword ptr [ebp+8]

Now if i go manualy go to the next step (jump over the current walked), the the rest of the code will work and i become to the the next tab with his content...

 

can someone begin somewhat thereby ? very strengaly...

 

4 Items, 1 Pages 1 |< << Go >> >|


Free Download:


Web:
Problem with rendering of TabStrip in UpdatePanel, which will be ... Problem with rendering of TabStrip in UpdatePanel, which will be load on async postbak... Last post 06-28-2007 7:50 AM by yesso. 3 replies. ...
How to trigger full postback within updatepanel. - asp.net_ajax ... In other words, they'll still do an async postback, but the UpdatePanel won't .... postback (the initial page load) and the time the UpdatePanel was last . ...
RadMenu 4.0.2 in an UpdatePanel after async update - telerik Forum On the initial page load, the RadMenu works fine. However, after an async postback of the UpdatePanel, the RadMenu is re-rendering and will ...
A New AJAX Approach - Client-side Controls Invoking Web Services If an asynchronous postback, we need to figure out the purpose of that request and only .... My problem still load good, but but when I click on first time: ...
RadSplitter and UpdatePanel - telerik Forum As far as I can figure out, the issue is trying to load the layout from an asynchronous postback in the UpdatePanel (i.e. button click makes ...
obout inc - Free AJAXPage - CallbackPanel - Server side documentation Always - the panel is always updated (when the page is first loaded, when an explicit UpdatePanel requests it, when UpdateAllPanels is used). ...
Nuker's Rock: October 2007 While starting an asynchronous postback, the UpdateProgress control will work. ... inside the UpdatePanel so that partial-page rendering will automatically ...
Atlas with 3rd party controls - ASP.NET Forums The situation is that I have a Update Panel on my page with some buttons on it. ... rendered parts of the page that may result from the postback (async). ...
The Blog of Milos CallBack's loadUrl method causes CallBack’s content to be loaded from the .... UpdatePanels post the whole page, effectively performing a postback with each ...
Telerik.aspnetajax.radajax.2008.Q2 As a result, during an asynchronous postback, the validators perform ..... with a performance problem by rendering smaller portions of the page and worsen ...




Search This Site:










treeview menu from xml file

pageview error

treeview error in authenticated website

treeview

i run build.bat and i don't see any web.ui.webcontrolls.dll

passsing value from treeview in one iframe to another iframe in same page

hot to get iewebcontrols for version 2.0??

problem running samples

ie tool bar just displays text not like buttons in browser

problem with ie web control ... please help

treeview dinamic population without postback!!!

dynamically adding tabs to a tabstrip iewc

treeview doesnt maintain state

where is page.navigate method?

fix for dynamic treeview in aspx

internet web control not working with asp .net

postback only on checkbox and not on +-

toolbar problem with windows2000 advanceserver

tabstrip in modal dialog

treeview

error while add iewebcontrols to toolbox

error creating control

tabstrip view

treeview events not being fired!

tabs in a tabstrip

unseen microsoft.web.ui.webcontrols.dll

404 error page = null generated by tapstrip

treeview displayed as text

how to use treeview control in asp.net???

dll missing from download

  Privacy | Contact Us
All Times Are GMT