שלח תשובה

זירת השאלות

406
צפיות
3
תשובות

עזרה בקשר לפונקציות

,‏ 31 במרץ, 2004

אוקיי אז ראיתי פה שמישהו עשה עידכון דרך אותו דף עם פונקציה
אז הכנתי במשהו כזה

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 תשובות

  1. xgamer הגיב:

    החלק העליון אמור להראות כך


    <%
    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
    %>

שלח תשובה