1
Answer

User interface?

KyDeano28

KyDeano28

20y
2.5k
1
I'd like to figure out how to have graphics on a web page where certain input boxes or buttons are only available for a particular person based on who they are (Login name maybe). Is this possible through vb.net or will i need to use another language. ASP.net maybe? Coding examples of this would be greatly apprecdiated. TIA, KyDeano
Answers (1)
0
Gopi Chand

Gopi Chand

NA 13.1k 644.5k 10y
Just write the code given below in your jsp file: <% HttpSession hs=request.getSession(); String u=(String)hs.getAttribute("aUser"); if(u==null) { response.sendRedirect("index.jsp"); } %>
0
JobPencil

JobPencil

NA 60 0 10y