A angus Jul 8, 2004 #1 Dear All, Are there any similar thing in ASP.net like Session Bean in JSP? \ Regards, Angus
T Teemu Keiski Jul 8, 2004 #2 Do you mean session object , generally concept of sessions? Such certainly is in ASP.NET.
N Natty Gur Jul 8, 2004 #3 Hi, Yes. it basically class inherits from servicedComponent. for more iNfo : http://www.c-sharpcorner.com/Code/2003/March/J2EEtoDotNet.asp Natty Gur[MVP] blog : http://weblogs.asp.net/ngur Mobile: +972-(0)52-8888377 *** Sent via Devdex http://www.devdex.com *** Don't just participate in USENET...get rewarded for it!
Hi, Yes. it basically class inherits from servicedComponent. for more iNfo : http://www.c-sharpcorner.com/Code/2003/March/J2EEtoDotNet.asp Natty Gur[MVP] blog : http://weblogs.asp.net/ngur Mobile: +972-(0)52-8888377 *** Sent via Devdex http://www.devdex.com *** Don't just participate in USENET...get rewarded for it!
A angus Jul 8, 2004 #4 Hi Teemu Keiski, Do you mean session object , generally concept of sessions? Such certainly is in ASP.NET. Click to expand... e.g. ----------- test.jsp ----------- <%@ page language="Java" contentType="text/html; charset=UTF-8" %> <jsp:useBean id="unit" scope="session" class="com.test.unit.bean.Unit" /> <% System.out(unit.unit_id)%> ------------------------------ com.test.unit.bean.Unit ------------------------------ package com.test.unit.bean; public class Unit implements java.io.Serializable { public String unit_id = ""; }
Hi Teemu Keiski, Do you mean session object , generally concept of sessions? Such certainly is in ASP.NET. Click to expand... e.g. ----------- test.jsp ----------- <%@ page language="Java" contentType="text/html; charset=UTF-8" %> <jsp:useBean id="unit" scope="session" class="com.test.unit.bean.Unit" /> <% System.out(unit.unit_id)%> ------------------------------ com.test.unit.bean.Unit ------------------------------ package com.test.unit.bean; public class Unit implements java.io.Serializable { public String unit_id = ""; }