将值从 applet 传递到 jsp
import java.awt.*;
import java.applet.*;
public class GuiExample extends Applet {
Button okButton;
TextField nameField;
public void init() {
setLayout(null);
okButton = new Button("A button");
nameField = new TextField("A TextField",100);
okButton.setBounds(20,20,100,30);
nameField.setBounds(20,70,100,40);
add(okButton);
add(nameField);
}
}
单击按钮时,如何将文本框中的值传递到“validate.jsp”? 我还希望浏览器转到那个jsp页面。并从那里继续执行? 我该如何修改代码?
import java.awt.*;
import java.applet.*;
public class GuiExample extends Applet {
Button okButton;
TextField nameField;
public void init() {
setLayout(null);
okButton = new Button("A button");
nameField = new TextField("A TextField",100);
okButton.setBounds(20,20,100,30);
nameField.setBounds(20,70,100,40);
add(okButton);
add(nameField);
}
}
how can i pass the value in the textbox to the 'validate.jsp', when the button is clicked?
And i also want the browser to go to that jsp page. and continue execution from there?
How can i modify the code?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这段代码可能会有所帮助。
}
This bit of code might be helpful.
}