Salve a tutti, sto modificando per la prima volta un sito flash con adobe flash cs5... l'ho quasi terminato... però ho 2 problemi:
1) quando vado a pubblicarlo mi esce questo blocco:
"PER FACILITARE LA PROTEZIONE è STATO IMPEDITO A QUESTA PAGINA WEB DI ESEGUIRE LO SCRIPT O CONTROLLO ACTIVEX CHE POTREBBERO ACCEDERE AL COMPUTER!
come faccio a elimare questo problema??? Altrimenti nessuno lo vede per paura di chissà cosa!!
2) ho questo file asp.... sapete come funziona??
'------getting data sent by flash (filtering configuration data)------------
For Each fld in Request.Form
If Request.Form(fld) <> "" and _
fld <> "mail_to" and _
fld <> "smtp_server" and _
fld <> "smtp_port" and _
fld <> "plain_text" and _
fld <> "mail_from" and _
fld <> "mail_subject" Then
myBody = myBody & vbCRLF & " " & fld & " :
" & Trim(Request.Form(fld)) & "
"
End If
Next
'---------------------------------------------------------------------------
'----------setting conf data------------------------------------------------
On Error Resume Next
Set myMail = CreateObject("CDO.Message")
myMail.Subject = Request.Form("mail_subject")
myMail.From =Request.Form("mail_from")
myMail.To = Request.Form("mail_to")
'--------if plain text is set to true removing html---------------------------------------
if Request.Form("plain_text") = "true" then
myMail.TextBody = RemoveHTML(myBody)
'-------otherwise composing message body--------------------------------------------------
else myMail.HTMLBody = "<html><body>" & myBody & "</body></html>"
Vi ringrazio in anticipo.... mi salvate da un problema enorme!!!! GRAZIE DI CUORE!

Rispondi quotando