Click here to Skip to main content
15,893,668 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
<%@ Page Title="Class Details - Class Hunt" Language="C#" MasterPageFile="~/Admin/AdminMaster.master"
AutoEventWireup="true" CodeFile="ClassDetails.aspx.cs" Inherits="Admin_ClassDetails" EnableEventValidation ="false" %>

<asp:Content ID="Content1" ContentPlaceHolderID="cphHead" runat="Server">

<script language="javascript" type="text/javascript">

</script>


<asp:Content ID="Content2" ContentPlaceHolderID="cphBody" runat="Server">
<!--=== Breadcrumbs ===-->

<!--/breadcrumbs-->
<!--=== End Breadcrumbs ===-->

<!--=== Content Part ===-->







Class Details







<label class="label">Class Name*</label>
<label class="input">

<input runat="server" type="text" id="txtClassName" name="txtClassName" placeholder="Class Name">
Enter Class Name
</label>


<label class="label">Class Type*</label>
<label class="select">
<asp:DropDownList ID="cboClassType" runat="server"
DataTextField="ClassType" DataValueField="ClassType" AppendDataBoundItems="True" required="required">
<asp:ListItem Value="0" Selected="True">- Select Class Type-
<asp:ListItem Value="1"> Institute
<asp:ListItem Value="2"> College
<asp:ListItem Value="3"> School

</label>













<asp:ImageButton ID="lcmdNew" runat="server" ImageUrl="images/Icons/icon-32-new.png" OnClick="btnSave_Click" />

Back







<!--/container-->
<!--=== End Content Part ===-->


<asp:Content ID="Content3" ContentPlaceHolderID="cphFooter" runat="Server">
Posted
Comments
Suvendu Shekhar Giri 10-Jan-15 23:02pm    
The ID of image button is lcmdNew and click event for the same button references to btnSave_Click. I am not saying it's not possible but make sure that it's pointing to the correct event.
Kornfeld Eliyahu Peter 11-Jan-15 3:14am    
1. Please remove unrelated code and format the rest - it is next to impossible to read your question...
2. Do you have an error?

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900