Frage : ClientScript.RegisterStartupScript nicht arbeitend

Ich habe ein javascipt, das in einem externen flie gespeichert wird.  Ich schließe es in meiner Vorlagenseite using das folgende HTML-Code


Then verwende ich den folgenden Code in einer Kindseite, um den Index zu erhalten, um durchzuführen, wann die Seite loading.
Page.ClientScript.RegisterStartupScript beendet (GetType (Seite), "", „OnInitial (); “,)

In IE7 ausrichten, das dieses adaequat ist.  In IE8/FireFox tut es nicht.  Jedoch, wenn in meiner Kindseite I hinter dem Indexcode im Kopf des Doc., es gerade adaequat ist.    Ich habe eine Kopie des Javascript angebracht.  Jede mögliche Hilfe würde groß appreciated.
sein
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:
6:
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;
Funktion OnInitial () 
{
//debugger; ;
	var I, J, n, strTopic, strSubtopic;

	nTopics =document.getElementById („_ctl0_ContentPlaceHolder1_ddlTopic“) .options.length; 
	aTopicText = neue Reihe (nTopics);
	aTopicValue = neue Reihe (nTopics);
	für (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 = neue Reihe (nSubtopics);
	aSubtopicValue = neue Reihe (nSubtopics);
	für (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;
	wenn (nSelectedTopic == 0) {
		document.getElementById („_ctl0_ContentPlaceHolder1_ddlSubtopic“) .options.length = 1;
	}
	sonst {
		strTopic = document.getElementById („_ctl0_ContentPlaceHolder1_ddlTopic“) .options [nSelectedTopic] .text;
		n = strTopic.length;
		J = 0;
		für (i = 1; I < nSubtopics; i++) {
			strSubtopic = aSubtopicValue [i];
			wenn (strTopic! = strSubtopic.substring (0, N)) 
			{
				document.getElementById („_ctl0_ContentPlaceHolder1_ddlSubtopic“) .options [i - J] = Null;
				j++;
			}
		}
	}
}

Funktion OnChangeTopic () 
{var I, J, n, strTopic, strSubtopic, strSubtopicVal; 
 
	wenn (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; 
		wenn (nSelectedTopic! = 0) 
		{ 
			J = 1; 
			n = strTopic.length; 
			für (i = 1; I < nSubtopics; i++) 
			{ 
				//strSubtopic = aSubtopicValue [i]; 
				strSubtopic = aSubtopicText [i];
				strSubtopicVal = aSubtopicValue [i];
				wenn (strTopic == strSubtopic.substring (0, N)) 
				{ 
					document.getElementById („_ctl0_ContentPlaceHolder1_ddlSubtopic“) .options [J] = neue Wahl (strSubtopic.substring (n + 1, strSubtopic.length), strSubtopicVal); 
					wenn (nSelectedSubtopic == i) { 
						document.getElementById („_ctl0_ContentPlaceHolder1_ddlSubtopic“) .selectedIndex = J; 
					} 
					j++; 
				} 
			} 
		} 
	} 
} 
Funktion OnChangeSubtopic () 
{var I, n, strSubtopic; 
	n = document.getElementById („_ctl0_ContentPlaceHolder1_ddlSubtopic“) .selectedIndex; 
	wenn (n == 0) 
	{ 
		nSelectedSubtopic = 0; 
	} 
	sonst 
	{ 
		strSubtopic = document.getElementById („_ctl0_ContentPlaceHolder1_ddlSubtopic“) [n] .value; 
		für (i = 1; I < nSubtopics; i++) 
		{ 
			wenn (strSubtopic == aSubtopicValue [i]) 
			{ 
				nSelectedSubtopic = i; 
				Bruch; 
			} 
		} 
	} 
}


Antwort : ClientScript.RegisterStartupScript nicht arbeitend

Es ist der nicht CSS, aber die Änderungen von IE7 zu IE8.  Jedoch können Sie eine, CSS-Kategorie mit Z-Index zu verwenden versuchen, da es kein entsprechendes Attribut auf der Steuerung gibt, der ich von weiß.
Weitere Lösungen  
 
programming4us programming4us