5
সার্লেলে doGet এবং doPost
আমি একটি এইচটিএমএল পৃষ্ঠা তৈরি করেছি যা কোনও সার্লেটে তথ্য প্রেরণ করে। সার্লেলে, আমি পদ্ধতিগুলি doGet()এবং ব্যবহার করছি doPost(): public void doGet(HttpServletRequest req, HttpServletResponse res) throws ServletException, IOException { String id = req.getParameter("realname"); String password = req.getParameter("mypassword"); } public void doPost(HttpServletRequest req, HttpServletResponse res) throws ServletException, IOException { String id …