<a href="http://pravysoft.eu5org/sms.php?<%=id%>"></a>;
在此行找到多个注释:
在上面一行中我得到这样的错误,请提前帮助我
<% String username="9566193155";
String password="232323";
String to="9566193155";
String msg="TEST";
<a href="pravysoft.eu5org/sms.php?<%=id%>"></a>;;
/* sendsms.init();
sendsms.server = 192.168.1.4;
sendsms.user = 9566193155;
sendsms.password = 232323;
sendsms.phonenumber = +9566193155?;
sendsms.text = This is a test message;
sendsms.send(); */ %>
答案 0 :(得分:1)
JSP中<%
和%>
之间的所有内容都必须是有效的Java代码。
<a href="pravysoft.eu5org/sms.php?<%=id%>"></a>;;
不是有效的Java代码。这就是您收到错误消息的原因。
您可以用
替换该行%>
<a href="pravysoft.eu5org/sms.php?<%=id%>"></a>
<%
但是,我不确定这会解决您的问题。您发布的整个代码段不是很清楚:您似乎正在实现在JSP中发送SMS,但您提到的链接指向使用未声明的参数(id
)的PHP文件 - at至少在这里发布的片段中。
好吧,找到上面问题的确切答案。只是不要指望一切正常,我怀疑其他地方还有其他问题。