Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
1 Commented Post
0 Endorsements
Ranked #22.6K
Ranked #3K
~6K People Reached
This member's community profile is only visible to logged in members until they have earned 15 reputation points.

9 Posted Topics

Member Avatar for ajinkya112

you "repeated rows show" problem will solved form this code...you shoud have to use the Is not post back function, if you want to not fire every time a biding grid view code. [CODE]private void Form1_Load(object sender, EventArgs e) { if (IsPostBack == false) { bindgrid(); } }[/CODE] Regards, jay

Member Avatar for mohammed_35
-2
4K
Member Avatar for rajeev_vlal
Member Avatar for danceo0
0
103
Member Avatar for ryathegr8

Hello I gone through your message, its good that you want to do project which will be helpful to university. Well, for this , i suggest, first you need to meet the operational staff of the university and talk about your willingness aobut the final year project, and try to …

Member Avatar for ryathegr8
0
202
Member Avatar for ryathegr8

Hello I gone through your message, its good that you want to do project which will be helpful to university. Well, for this , i suggest, first you need to meet the operational staff of the university and talk about your willingness aobut the final year project, and try to …

Member Avatar for ryathegr8
0
172
Member Avatar for abhi10kumar

[CODE]#Aspx Page #----------- # This is the template filed of the grid view... Grid view template column for the check boxk <asp:TemplateField HeaderText="Select"> <ItemTemplate> <asp:CheckBox ID="chkSelect" runat="server" /> </ItemTemplate> </asp:TemplateField> # button <asp:Button ID="btnDelete" runat="server" Text="Delete" Width="10%" OnClick="btnDelete_Click1" /> #Code #------------ protected void btnDelete_Click1(object sender, EventArgs e) { foreach(GridViewRow row …

Member Avatar for jay.gadhavi
0
193
Member Avatar for james6754

An object is the kay to open or access anything in the form or in the code. Whereas in the form , if you have used textbox, than the id will be a objec (textbox) access key form which you can access the textbox. In the class or c# class, …

Member Avatar for Momerath
0
156
Member Avatar for kevin025

In your select statement you should have to pass the Filed "ResultName" so it will be bind in the grid view. Regards, jay

Member Avatar for jay.gadhavi
0
80
Member Avatar for ajinkya112

You have written comboBox1.SelectedIndex Well, this gives you a selected index, whtever you have selected like 1, 2 or 4 Well, same table name 1, 2, or 4 might be not availabe in your database so use .SelectedValue so you may get the table name form the combobox check it …

Member Avatar for jay.gadhavi
0
141
Member Avatar for abelLazm

The End.