Click here to Skip to main content
15,894,337 members

Comments by Ssntosh Chouhan (Top 5 by date)

Ssntosh Chouhan 21-Jan-14 13:03pm View    
your correct sir, but if you tell me some info about the org which are looking for particular lang and expecting from beginners that they should have the knowledge of those lang , i will think about it look forward if i'm interested in any.
Ssntosh Chouhan 11-Aug-13 1:40am View    
Reason for my vote of 4 \n itz working fine.. thanks for sharing ur knownledge...!!
Ssntosh Chouhan 27-Jul-13 14:26pm View    
Reason for my vote of 4 \n thnx for the tip..
Ssntosh Chouhan 22-Jul-13 2:24am View    
mr rohan,
if u have time can u plz come to TeamViewer nd sort out this pbm?
Ssntosh Chouhan 22-Jul-13 2:15am View    
take two gridviews one is for courses another for student....
now you need to create a course,student table in sql express ..
bind it with grideview1,gridview2.. i hve done all this stuff but i cant able to get it
form id="form1" runat="server">
<div>


<asp:Button ID="Button1" runat="server" Text="Button" OnClick="Button1_Click" />
<asp:GridView ID="GridView1" runat="server" EditIndex="0" EnableSortingAndPagingCallbacks="True">
<columns>

<asp:BoundField DataField="course_id" HeaderText="course_id" ReadOnly="true"/>

<asp:BoundField DataField="title" HeaderText="title" ReadOnly="true"/>

<asp:TemplateField HeaderText="amount">
<itemtemplate>
<%# Eval("amount") %>


<edititemtemplate>


<asp:GridView ID="GridView2" runat="server">
<columns>
<asp:TemplateField HeaderText="name">

<itemtemplate>
<%# Eval("student_id") %>
<%# Eval("name") %>
<%# Eval("joiningdate") %>
<%# Eval("course_id") %>
<%# Eval("feepaid") %>

























</div>
</form>


my question is when u run it on browser it must show like course id,title,amount---studentid ,name,joiningdate...