Showing posts with label web project. Show all posts
Showing posts with label web project. Show all posts

Saturday, 6 October 2012

Web Mart E-Shopping Website Project

Web Mart E-Shopping Website Project

Tech:
C# .Net
Web App
VS 2008
Sql Server 2005


Abstract:
Online Shopping Project Web based.


Link: http://www.mediafire.com/?dw6yc042pps1f3c

Online Exam Project

Online Exam Project

Tech:
C# .Net
Win App
VS 2008
Sql Server 2005


Abstract:
Online Examination Project with timer feature.

Link: http://www.mediafire.com/?23j1kul8ixq45ec

How to use session in Java web Project

Creating / Using session : Java Web Project



// NameSpace imports
import java.util.Map;
import com.opensymphony.xwork2.ActionContext;
/* Use openSymphony .jar for above import
//Declaration of Session
private Map session;
//Create setter getter
session = ActionContext.getContext().getSession();
//Use session.put & session.get
session.put(“Id”,userID );
String userId = (String)session.get(“Id”);