Author: jassi_tkm | Posted on: 7/22/2009 6:45:54 AM | Views : 1104

 
Hello, 
    I am new to ASP.NET development.
    I want to retrieve an object from the module and use it in scriplets. Basically its to show the data of the object. Something like :
<form>
<%
   dim obj as Employee = GetEmployee()    ' Method in Module
%>

<asp:textbox .... text=<%=obj.EmpID%>
<asp.textbox .... text=<%=obj.Name%>
...

<
This is what I tried:
asp:TextBox IDGo to the complete details ...