954,595 Members — Technology Publication meets Social Media
Username:
Password:
Lost login information?
Have something to say? Contribute New Article Reply to this Article

Browser compatibilty

see the link

http://www.gfln.org/Regsiteration.aspx and click on radio button from 1 to 7 IE produces div (as many as clicked) but in forefox it got some how hang .please post back me if i need explain any thing else in my problem

any urgent reply is highly appreciated

erum
Junior Poster in Training
72 posts since Mar 2008
Reputation Points: 10
Solved Threads: 0
 

I think there is a problem/conflicts with IDs of DOM.

__avd
Posting Genius (adatapost)
Moderator
8,648 posts since Oct 2008
Reputation Points: 2,136
Solved Threads: 1,241
 

can u further explain , i m unable to get u

erum
Junior Poster in Training
72 posts since Mar 2008
Reputation Points: 10
Solved Threads: 0
 

Sure! I'm talking about ID attribute of html tags.

__avd
Posting Genius (adatapost)
Moderator
8,648 posts since Oct 2008
Reputation Points: 2,136
Solved Threads: 1,241
 

is there any way on daniweb to attached file secondly so far let me tell u shortly i created div dynamiclaly and and some other stuff on .aspx page

can u tell me how to attached file

erum
Junior Poster in Training
72 posts since Mar 2008
Reputation Points: 10
Solved Threads: 0
 

but i m pretty sure that i give them name uniquely !! ...

erum
Junior Poster in Training
72 posts since Mar 2008
Reputation Points: 10
Solved Threads: 0
 

>can u tell me how to attached file

Click on "Use Advanced Editor" or "Post Reply" - where you will find "Attachment" option.

__avd
Posting Genius (adatapost)
Moderator
8,648 posts since Oct 2008
Reputation Points: 2,136
Solved Threads: 1,241
 

ok ,thanks for ur reply , i m sending u file as an atatchment

kepp updating me,ayn urgent reply would be good ,and thanks for being there

Attachments Files.zip (15.6KB)
erum
Junior Poster in Training
72 posts since Mar 2008
Reputation Points: 10
Solved Threads: 0
 

Change the property UpdatePanel2.UpdateMode=Always and lets see what happen.

__avd
Posting Genius (adatapost)
Moderator
8,648 posts since Oct 2008
Reputation Points: 2,136
Solved Threads: 1,241
 

well its same now :( ,no change i set its mode to always ,i did not uploaded it on the server but check on local with mozilla firefox ,

unable to figure out the issue

erum
Junior Poster in Training
72 posts since Mar 2008
Reputation Points: 10
Solved Threads: 0
 

Remove/comment CreateControl() and CreateControl1() method.

Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
        If IsPostBack Then
            CreateControl() ' for div
            CreateControl1() 'For booth radio buton
            'AddHandler Me.rdbtn_booth.SelectedIndexChanged, AddressOf Me.rdbtn_booth_SelectedIndexChanged
            ' End If

            'AddHandler Me.rdbtn_booth.SelectedIndexChanged, AddressOf Me.rdbtn_booth_SelectedIndexChanged
            AddHandler Me.spous_atend_Conference.SelectedIndexChanged, AddressOf spous_atend_Conference_SelectedIndexChanged

        End If
        Me.txt_arrival_date.Attributes.Add("readonly", "readonly")
        Me.txt_departure_date.Attributes.Add("readonly", "readonly")
        Me.txt_checkin.Attributes.Add("readonly", "readonly")
        Me.txt_checkout.Attributes.Add("readonly", "readonly")
    End Sub
__avd
Posting Genius (adatapost)
Moderator
8,648 posts since Oct 2008
Reputation Points: 2,136
Solved Threads: 1,241
 

well i have these lines b/c when page renders again for example on booth click the number of attendenes disappear

thanks

erum
Junior Poster in Training
72 posts since Mar 2008
Reputation Points: 10
Solved Threads: 0
 

well adatapost i m using firebug(to see the stuff it generates) for it ,seems to me bit easy !! what actual need to check in the tree of DOM( NEW to these ADDONS) ??

can u breifly help me how to check dom tree in Firefox

erum
Junior Poster in Training
72 posts since Mar 2008
Reputation Points: 10
Solved Threads: 0
 

let me post updated error see image

Attachments error.png 42.29KB
erum
Junior Poster in Training
72 posts since Mar 2008
Reputation Points: 10
Solved Threads: 0
 

Please turn off event validation by setting this attribute of page direcive : enableEventValidation="false"

__avd
Posting Genius (adatapost)
Moderator
8,648 posts since Oct 2008
Reputation Points: 2,136
Solved Threads: 1,241
 

now i mgeeting one error
Error: Livemark Service: feed processor received an invalid channel for http://fxfeeds.mozilla.com/en-US/firefox/headlines.xml
Source File: file:///C:/Program%20Files/Mozilla%20Firefox/components/nsLivemarkService.js
Line: 985

at this line

Components.utils.reportError("Livemark Service: feed processor received an invalid channel for " + channel.URI.spec);

erum
Junior Poster in Training
72 posts since Mar 2008
Reputation Points: 10
Solved Threads: 0
 

actually i have user control on my test page test page is nothing but liek this

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>GFLN - Global Freight &amp; Logistics Network</title>
 
<!--[if IE 6]>
<script type="text/javascript" src="js/DD_belatedPNG.js"></script>
<script>
DD_belatedPNG.fix('img,div,a');
DD_belatedPNG.fix('.logo');
</script>
<![endif]-->
<link href="css/styles.css" rel="stylesheet" type="text/css"/>
 
<!-- for left menu-->
<script type="text/javascript">

    var baseopacity = 0

    function showtext(thetext) {
        if (!document.getElementById)
            return
        textcontainerobj = document.getElementById("tabledescription")
        browserdetect = textcontainerobj.filters ? "ie" : typeof textcontainerobj.style.MozOpacity == "string" ? "mozilla" : ""
        instantset(baseopacity)
        document.getElementById("tabledescription").innerHTML = thetext
        highlighting = setInterval("gradualfade(textcontainerobj)", 50)
    }

    function hidetext() {
        cleartimer()
        instantset(baseopacity)
    }

    function instantset(degree) {
        if (browserdetect == "mozilla")
            textcontainerobj.style.MozOpacity = degree / 100
        else if (browserdetect == "ie")
            textcontainerobj.filters.alpha.opacity = degree
        else if (document.getElementById && baseopacity == 0)
            document.getElementById("tabledescription").innerHTML = ""
    }

    function cleartimer() {
        if (window.highlighting) clearInterval(highlighting)
    }

    function gradualfade(cur2) {
        if (browserdetect == "mozilla" && cur2.style.MozOpacity < 1)
            cur2.style.MozOpacity = Math.min(parseFloat(cur2.style.MozOpacity) + 0.2, 0.99)
        else if (browserdetect == "ie" && cur2.filters.alpha.opacity < 100)
            cur2.filters.alpha.opacity += 20
        else if (window.highlighting)
            clearInterval(highlighting)
    }
</script>
<!-- for left menu-->
 
</head>
 
<body>
<div class="wrapper_root">
	<!-- root top bar-->
	<div class="root_top_bar">
		<div class="wrapper_top_txt">
			<div class="top_left_txt">Latest GFLN News & Events: </div>
			<div class="top_right_txt"> The Global Freight & Logistics Network (GFLN) is the premier exclusive professional freight forwarders and project cargo network.</div>
		</div>
	</div>
	<!-- end of root top bar-->
	<div class="wrapper_root_body clr">
		<div class="root_body_wrapper clr">
			<!-- banner-->
			<div class="wrapper_banner">
				<div class="logo"><a href="#"><img src="images/logo.png" width="250" height="134" border="0" /></a></div>
				<div class="banner"></div>
			</div>
			<!-- end of banner-->
			<!-- root body-->
			<div class="root_body clr">
				<div class="left_body">
					<!-- box one-->
					<div class="wrapper_left_top_box">
						<div class="box_top_bar"><div class="box_top_txt">Conference Details</div></div>
						<div id="coolmenu">
							<a href="reason.html" onMouseover="showtext('Reasons To Attend?')" onMouseout="hidetext()">Reason's To Attend?</a>
							<a href="agenda.html" onMouseover="showtext('Agenda')" onMouseout="hidetext()">Agenda</a>
							<a href="cost.html" onMouseover="showtext('Costs & Details')" onMouseout="hidetext()">Costs & Details</a>
							<a href="accommodation.html" onMouseover="showtext('Accommondation')" onMouseout="hidetext()">Accommondation</a>
							<a href="registration.html" onMouseover="showtext('Registration')" onMouseout="hidetext()">Registration</a>
							<a href="one_to_one.html" onMouseover="showtext('One-on-one Meeting Scheduler')" onMouseout="hidetext()">One-on-one Meeting Scheduler</a>
							<a href="veiw.html" onMouseover="showtext('View Attendees')" onMouseout="hidetext()">View Attendees</a>
						</div>
					</div>
					<!-- end of box-->
					<!-- box one-->
					<div class="wrapper_left_top_box clr">
						<div class="box_top_bar"><div class="box_top_txt">City Tour</div></div>
						<div id="coolmenu">
							<a href="dubaitour.html" onMouseover="showtext('Tour Of Dubai')" onMouseout="hidetext()">Tour Of Dubai</a>
 
						</div>
					</div>
					<!-- end of box-->
					<!-- box three-->
					<div class="wrapper_left_top_box clr">
						<div class="box_top_bar"><div class="box_top_txt">More Information</div></div>
						<div id="coolmenu">
							<a href="info.html" onMouseover="showtext('Pre-Conference Info')" onMouseout="hidetext()">Pre-Conference Info</a>
							<a href="Dubaiguide.html" onMouseover="showtext('Dubai Guide')" onMouseout="hidetext()">Dubai Guide</a>
							<a href="contactus.html" onMouseover="showtext('Contact Us')" onMouseout="hidetext()">Contact Us</a>
						</div>						
					</div>
					<!-- end of three-->
					<!-- ads box -->
 
					<div class="wrapper_left_top_box clr">
						<div class="ads_box_top_bar"><div class="ads_box_top_txt">More Information</div></div>
						<div class="ads_box"><div class="img_position"><a href="http://www.dpworld.ae/"><img src="images/firstleft.jpg" width="217" height="133" /></a></div></div>
					</div>
					<!-- end of ads box-->
					<!-- ads box -->
					<div class="wrapper_left_top_box clr">
						<div class="ads_box_top_bar"><div class="ads_box_top_txt">Media Sponsor</div></div>
						<div class="ads_box"><div class="img_position"><a href="http://www.khaleejtimes.com/index00.asp"><img src="images/secondleft.jpg" width="217" height="133" /></a></div></div>
					</div>
					<!-- end of ads box-->
				</div>
				<div class="right_body">
					<div class="wrapper_right_body">
						<div class="right_body_top_bar">
							<div class="wrapper_agenda">
														
							</div>
						</div>
						<div class="right_root_body">
							<!--<div class="agenda_date_box_1"></div>-->
							<!-- meeting details-->
							<div class="wrapper_agenda_details">
								
							</div>
							<!-- end of meeting details-->
						</div>
						
						<div class="right_root_body">
							<div class="space clr"></div>
							
							<!-- meeting details-->
									
 
											
 
 
 
					
 
 
 
 
 
 
 
 
 
 
 
 

 
					
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
							<!-- end of meeting details-->
							<div class="space"></div>
							<div class="right_body_footer clr">
								<div class="rgt_footer_left_txt"></div>
								
							</div>
						</div>
						
					</div>
				</div>
			</div>
			<!-- end of root body-->
		</div>
		<!-- footer-->
		<div class="wrapper_footer clr">
		</div>
		<!-- end of footer-->
	</div>
	<!-- bottom bar -->
	<div class="wrapper_bottom_bar clr">
		<div class="bottom_txt">Copyright  ©  2010 GFLN - Global Freight Logistics Network. All rights reserved. </div>
	</div>
	<!-- end of bottom bar-->
</div>
</body>
erum
Junior Poster in Training
72 posts since Mar 2008
Reputation Points: 10
Solved Threads: 0
 

This article has been dead for over three months

Post: Markdown Syntax: Formatting Help
You
View similar articles that have also been tagged: