Posts

New Time Table

Image

Time table M.Sc. I.T. 4rth Sem. (Afternoon)

Day 1 st Class 2 nd Class 3 rd Class Monday Advance Web Application Development Enterprise Resource Planning Systems Network Security Tuesday Advance Web Application Development IT Project Management IT Project development Wednesday Enterprise Resource Planning Systems IT Project Management IT Project development Thursday -- -- Research Methods Friday -- Research Methods Network Security
Image

Result of NDM

Image

Java Notes

Image
Cameraman Tayyar Ghaffar ....... 

Dev6i

   Click here to download dev6i This is full of viruses scanned by avira antivirus wait till tomorrow evening for fresh n clean links :) Login detail email              rehan.gull@ymail.com password        precision .

GetSession

import java.io.*; import javax.servlet.*; import javax.servlet.http.*; public class GetSession extends HttpServlet {     public void doGet(HttpServletRequest request, HttpServletResponse response)     throws IOException, ServletException     {         response.setContentType("text/html");         PrintWriter out = response.getWriter();     HttpSession hs=request.getSession();     String str1=(String)hs.getAttribute("a");     String str2=(String)hs.getAttribute("b");     out.println(str1+str2);     } }