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 ...