Pytanie : ClientScript.RegisterStartupScript

I mieć javascipt przechować w zewnętrznie flie.  I zawierać ono w mój mistrzowski strona using the następujący HTML kod


Then I używać the następujący kod w dziecko strona the pismo gdy the strona kończyć loading.
Page.ClientScript.RegisterStartupScript (GetType (Strona), "", "OnInitial (); ", Prawdziwy)

In IE7 pracować pracować świetnie.  W IE8/Firefox ono.  Jeżeli w mój dziecko strona I za the pismo kod w the głowa the doc, ono pracować właśnie świetnie.    I dołączać kopia the JavaScript.  Jakaś pomoc być ogromnie appreciated.
(1):
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
45:
46:
47:
48:
49:
50:
51:
52:
53:
54:
55:
56:
57:
58:
59:
60:
61:
62:
63:
64:
65:
66:
67:
68:
69:
70:
71:
72:
73:
74:
75:
76:
77:
78:
79:
80:
81:
82:
83:
84:
85:
86:
87:
88:
89:
90:
91:
92:
93:
94:
95:
96:
97:
98:
99:
100:
101:
102:
103:
104:
105:
106:
107:
108:
109:
var nSubtopics;
var nTopics;
var aTopicText;
var aTopicValue;
var aSubtopicText;
var aSubtopicValue;
var nSelectedTopic;
var nSelectedSubtopic;
funkcja OnInitial () 
{
//debugger; ;
	var i, j, n, strTopic, strSubtopic;

	nTopics =document.getElementById ("_ctl0_ContentPlaceHolder1_ddlTopic") .options.length; 
	aTopicText = nowy Szyk (nTopics);
	aTopicValue = nowy Szyk (nTopics);
	dla (i=0; i< nTopics; i++)
	{
		aTopicText [i] = document.getElementById ("_ctl0_ContentPlaceHolder1_ddlTopic") .options [i] .text;
		aTopicValue [i] = document.getElementById ("_ctl0_ContentPlaceHolder1_ddlTopic") .options [i] .value;
	}
	nSubtopics = document.getElementById ("_ctl0_ContentPlaceHolder1_ddlSubtopic") .options.length; 
	aSubtopicText = nowy Szyk (nSubtopics);
	aSubtopicValue = nowy Szyk (nSubtopics);
	dla (i = (0); i < nSubtopics; i++) {
		aSubtopicText [i] = document.getElementById ("_ctl0_ContentPlaceHolder1_ddlSubtopic") .options [i] .text;
		aSubtopicValue [i] = document.getElementById ("_ctl0_ContentPlaceHolder1_ddlSubtopic") .options [i] .value;
	}
	nSelectedTopic = document.getElementById ("_ctl0_ContentPlaceHolder1_ddlTopic") .selectedIndex;
	nSelectedSubtopic = document.getElementById ("_ctl0_ContentPlaceHolder1_ddlSubtopic") .selectedIndex;
	jeżeli (nSelectedTopic == (0)) {
		document.getElementById ("_ctl0_ContentPlaceHolder1_ddlSubtopic") .options.length = (1);
	}
	inny {
		strTopic = document.getElementById ("_ctl0_ContentPlaceHolder1_ddlTopic") .options [nSelectedTopic] .text;
		n = strTopic.length;
		j = (0);
		dla (i = (1); i < nSubtopics; i++) {
			strSubtopic = aSubtopicValue [i];
			jeżeli (strTopic! = strSubtopic.substring ((0), n)) 
			{
				document.getElementById ("_ctl0_ContentPlaceHolder1_ddlSubtopic") .options [i - j] = null;
				j++;
			}
		}
	}
}

funkcja OnChangeTopic () 
{var i, j, n, strTopic, strSubtopic, strSubtopicVal; 
 
	jeżeli (nSelectedTopic! = document.getElementById ("_ctl0_ContentPlaceHolder1_ddlTopic") .selectedIndex) 
	{ 
                
              
		nSelectedTopic = document.getElementById ("_ctl0_ContentPlaceHolder1_ddlTopic") .selectedIndex; 
                 strTopic = document.getElementById ("_ctl0_ContentPlaceHolder1_ddlTopic") [nSelectedTopic] .text; 
		
		document.getElementById ("_ctl0_ContentPlaceHolder1_ddlSubtopic") .options.length = (1); 
		jeżeli (nSelectedTopic! = (0)) 
		{ 
			j = (1); 
			n = strTopic.length; 
			dla (i = (1); i < nSubtopics; i++) 
			{ 
				//strSubtopic = aSubtopicValue [i]; 
				strSubtopic = aSubtopicText [i];
				strSubtopicVal = aSubtopicValue [i];
				jeżeli (strTopic == strSubtopic.substring ((0), n)) 
				{ 
					document.getElementById ("_ctl0_ContentPlaceHolder1_ddlSubtopic") .options [j] = nowy Opcja (strSubtopic.substring (n + (1), strSubtopic.length), strSubtopicVal); 
					jeżeli (nSelectedSubtopic == i) { 
						document.getElementById ("_ctl0_ContentPlaceHolder1_ddlSubtopic") .selectedIndex = j; 
					} 
					j++; 
				} 
			} 
		} 
	} 
} 
funkcja OnChangeSubtopic () 
{var i, n, strSubtopic; 
	n = document.getElementById ("_ctl0_ContentPlaceHolder1_ddlSubtopic") .selectedIndex; 
	jeżeli (n == (0)) 
	{ 
		nSelectedSubtopic = (0); 
	} 
	inny 
	{ 
		strSubtopic = document.getElementById ("_ctl0_ContentPlaceHolder1_ddlSubtopic") [n] .value; 
		dla (i = (1); i < nSubtopics; i++) 
		{ 
			jeżeli (strSubtopic == aSubtopicValue [i]) 
			{ 
				nSelectedSubtopic = i; 
				przerwa; 
			} 
		} 
	} 
}


Odpowiedź : ClientScript.RegisterStartupScript

Ono być the CSS, ale the zmiana od IE7 IE8.  , Ty móc using CSS klasa z Z-Index ponieważ tam  być żadny atrybut na the kontrola który I znać.
Inne rozwiązania  
 
programming4us programming4us