-----------------------------------------------------------

New Message on BDOTNET

-----------------------------------------------------------
From: LovedJohnySmith
Message 2 in Discussion

Ajay:       The schene behind is,  <div> doesn't support either Netscape(layer) 
and mozilla, so you need to do a working tree-view on Netscape & Mozilla 
requires that each item in the tree be defined in a positioned DIV element and 
that when any item is expanded/collapsed (actually hidden/shown) the rest of 
the list needs to be re-positioned to fill in the vacated space. This is also 
true for 
Opera versions <= 6 but Opera requires a different implementation again.  
This approach is radically different (and much more complex) than the 
way that tree-view scripts work in the more dynamic DOM level 2 
browsers. It is possible to write a tree-view script that will work on 
both IE (4+ should be easy) and Netscape & Mozilla but it could be a big 
compromise for a very minor browser.   and you have to do is modify your 
browserCaps section of the web.config file. 

<browserCaps> 

<case match="^Mozilla/5\.0 \([^)]*\) 
(Gecko/[-\d]+)?Netscape[6|7]/(?'version'(?'major'\d+)(?'minor'\.\d+)(?'letters'\w*)).*">
 

tagwriter=System.Web.UI.HtmlTextWriter 
browser=Netscape 
version=${version} 
majorversion=${major} 
minorversion=${minor} 
frames=true 
tables=true 
cookies=true 
javascript=true 
javaapplets=true 
ecmascriptversion=1.5 
w3cdomversion=1.0 
css1=true 
css2=true 
xml=true 
</case> 


<!-- MOZILLA //--> 

<case 
match="^Mozilla/(?'version'(?'major'\d+)(?'minor'\.\d+)(?'letters'\w*))*"> 
<case match="^[5-9]\." with="${version}"> 
tagwriter=System.Web.UI.HtmlTextWriter 
</case> 
</case> 


<!-- OPERA 5+ //--> 

<case match="Opera[ /](?'version'(?'major'\d+)(?'minor'\.\d+)(?'letters'\w*))"> 
<filter match="[4-9]" with="${major}"> 
<filter match="[5-9]" with="${major}"> 
tagwriter=System.Web.UI.HtmlTextWriter 
</filter> 
</filter> 
</case> 

</browserCaps>    Thanks, Smith http://spaces.msn.com/members/johnysmith

-----------------------------------------------------------

To stop getting this e-mail, or change how often it arrives, go to your E-mail 
Settings.
http://groups.msn.com/bdotnet/_emailsettings.msnw

Need help? If you've forgotten your password, please go to Passport Member 
Services.
http://groups.msn.com/_passportredir.msnw?ppmprop=help

For other questions or feedback, go to our Contact Us page.
http://groups.msn.com/contact

If you do not want to receive future e-mail from this MSN group, or if you 
received this message by mistake, please click the "Remove" link below. On the 
pre-addressed e-mail message that opens, simply click "Send". Your e-mail 
address will be deleted from this group's mailing list.
mailto:[EMAIL PROTECTED]

Reply via email to