Hi I am very new to jsp but I just wondering that how do we get value from jsp page and pass value on to ios device example this is part of jsp page after login
<%
// ---------------------------------------- Get Parameter username, password >>
String sessUser = (String)session.getValue("sessUser");
String sessCustomer = (String)session.getValue("sessCustomer");
String str_Name= "";
String str_SurName= "";
String userid= sessUser;
USERS.connectDB(JDBC_DRIVER,DATABASE_URL,DbUser,DbPwd);
ResultSet rs=null;
rs = USERS.QueryByUserId(sessCustomer,userid,"","");
// --------------------------------------- Query solution department of login user >>
if (rs.next()) {
str_Name = rs.getString("nme");
str_SurName = rs.getString("surnme");
}rs.close();
%>
<body topmargin="0" leftmargin="0" bottommargine="0" bgcolor="black">
<table width="100%" cellPadding="0" cellSpacing="0" border="0" bgcolor="#494949">
<tr valign="top">
if I want to get value of str_name and display on iOS device .. what method can I use
Thank you