我有点困惑atm。我(必须...)使用经典的 asp 来为更大的网站实现包含。我对编码语言没有影响,所以请不要责怪语言或结构......
所以这是我的功能:
function MaintMod2(modcmd)
if CheckUserRights2("M.Write") or CheckUserRights2("M.Read") then
response.write("<div class=""formContainer"">"&_
"<form action="">"&_
"<span> CI: <input type=""text"" name=""CI"" value=""byitm6""></span>"&_
"<span> Start: <input type=""text"" name=""Start"" value=""01.03.2013 - 07:30:17""></span>"&_
"<span> End: <input type=""text"" name=""End"" value=""15.04.2013 - 11:37:33""></span>"&_
"<span> Active: <input type=""checkbox"" name=""Active"" value=""Active""></span>"&_
"<input type=""submit"" class=""button"" id=""formSend"">"&_
"</form>"&_
"</div>")
end function
主页面(不是我维护的)调用 MaintMod2 函数来呈现新页面。所以我使用“response.write”来生成我的 HTML。
我的问题:如何从表单操作中调用?
<form action="myfunction()">
这是我的第一个想法,但它并没有真正起作用:D