tailieunhanh - Dynamic Web Pages using JSP - Lab Deliverable 4

Sử dụng JavaBeans trong Java Server Pages 1. Viết một chương trình để hiển thị một màn hình số tiền rút cho người sử dụng. Cung cấp cho người dùng với ba lĩnh vực: Email Mã số tài khoản, và số lượng cân bằng. Hiển thị tình trạng thu hồi để người dùng sau khi người dùng nhập vào số ID tài khoản email, và số lượng. Ngoài ra, gửi một email id email của người dùng thông báo về tình trạng thu hồi. . | Lab Deliverable 4 Using JavaBeans in Java Server Pages Part II 1. Write a program to display a withdrawal amount screen to the user. Provide the user with three fields Email Id account number and Balance amount. Display the withdraw status to the user after the user enters the email Id account number and amount. In addition send an email to the user s email id informing about the withdrawal status. Solution Enter the following code in the notepad and save the file as withdrawlstatus_1 .jsp in Sessions folder. sp html head title MARKO title head body H1 align center MARKO Withdrawal status checking Screen H1 form method post h3 User Email ID input type text name email h3 h3 Account no input type text name accNo h3 h3 Balance Amount input type text name Bal h3 input type submit value Check Status form 9 o String strAccount accNo String strBal Bal String strEmail email if strAccount null strBal null strEmail null h3 align center Please enter email address account No and Balance and click the Check Status button to compute the withrawal status h3 else 9- o jsp useBean id objBT class scope session Using JavaBeans in Java Server Pages Ver 2005 Aptech Limited 1 jsp setProperty name objBT property accountNo value strAccount jsp setProperty name objBT property balance value strBal jsp useBean h3 For Account no jsp getProperty name objBT property accountNo 9 o String strMessage strMessage 9- o br br obj strEmail strMessage h3 9- body html Enter the following code in notepad and save the file as BankTransactionMail. java in Sessions folder. ava package MARKO import . import . import . public class BankTransactionMail implements int intAccountNo int intBalance public String getBalance return intBalance public void setBalance .

TỪ KHÓA LIÊN QUAN