Posted on: 12/26/2014 10:16:12 PM | Views : 532

Dear All -

--Page Code
<%@ Page Language="C#" Debug="true"% Inherits="PS.Training2Base" src="Training2Base.aspx.cb">
<html> <body> <form runat="server"> <h1> This is my first program</h1> <h3> I am loaded from </h3> <%= GetType().Assembly.Location %>
<asp:BulletedList runat="server" ID="_displayList" > <asp:ListItem> First Option </asp:ListItem> <asp:ListItem> 2nd Option </asp:ListItem> <asp:ListItem> 3rd Option </asp:ListItem> </asp:BulletedList>
</form> </body>
</html>
//Code Behind File
using System; using System.web.UI; using System.Web.UI.WebControls;
namespace PS{ public cl ...

Go to the complete details ...