406
צפיות
צפיות
3
תשובות
תשובות
עזרה בקשר לפונקציות
אוקיי אז ראיתי פה שמישהו עשה עידכון דרך אותו דף עם פונקציה
אז הכנתי במשהו כזה
sub postnews()
dim conn,rs,sql
Request.Form ("writer")
Request.Form ("title")
Request.Form ("body_news")
Response.Write "the write is " & writer &" the title"
Response.Write " is " & title & " the body"
Response.Write " is " & body_news & " ok?"
end sub
והקטע שקורא לפונקציה זה זה
<form method=post action=<%postnews%> >
הוא נותן ליע שגיאה שיש תו לא חוקי
מישהו יכול לאמר לי מה השגיאה ואם ניתן לעשות כך?
תודה מראש 🙂
3 תשובות
החלק העליון אמור להראות כך
<%
sub postnews()
dim conn,rs,sql
writer=Request.Form ("writer")
title=Request.Form ("title")
body_news=Request.Form ("body_news")
Response.Write "the writer is " & writer &" the title"
Response.Write " is " & title & " the body"
Response.Write " is " & body_news & " ok?"
end sub
%>
אפשר עזרה?
עניתי לך ב-סטאפ