
27-10-2005, 12:55
|
 |
מנהל פורום פלאש
|
|
חבר מתאריך: 04.03.05
הודעות: 5,834
|
|
|
ל Alpha Leader
נראה לי שאתה היחיד פה שמבין בדברים כאלה אז אם יש עוד אשמח לקבל את עזרתכם.
יש לי קובץ ASP שטוען נתונים מהקובץ MDB כמו שאמרת:
קוד PHP:
<% '***Prevents caching, allows true refresh %> <% Response.CacheControl = "no-cache" %> <% Response.AddHeader "Pragma", "no-cache" %> <% Response.Expires = -1 %>
<% Dim DataConn, FieldRS '***Change the path to database on this line if necessary DataConn = "Provider=Microsoft.Jet.OLEDB.4.0; Data Source=" & Server.MapPath("server/DBASE/USERMAN.mdb") set FieldRS=Server.CreateObject("ADODB.recordset") FieldRS.Source = "SELECT * FROM USERS ORDER BY USERNAME DESC" FieldRS.ActiveConnection = DataConn FieldRS.Open() '***For rows 1 , 2 , 3 numberit=1 Do until numberit = 11 response.write("username" & numberit & "=" & (FieldRS.Fields.Item("USERNAME").value))&"&" response.write("pass" & numberit & "=" & (FieldRS.Fields.Item("PASSWORD").value))&"&" response.write("session" & numberit & "=" & (FieldRS.Fields.Item("SQ").value))&"&" numberit = numberit + 1 FieldRS.MoveNext loop '***Close database. FieldRS.Close() Set FieldRS = Nothing %>
עכשיו כשאני טוען את הנתונים מהפלאש זה טוען בהצלחה אבל אז זה לא מוצא את הנתונים, עשיתי כך וזה עושה ש sh הוא unfined:
קוד:
onClipEvent(load){
loadVariables("data.asp", this)
_root.sh = this.username
}
יש לך מושג מה הבעיה...?
|