Data Controls :: Creating Folder When Clicking A CheckBox In GridView?
May 7, 2015
i want to create a folder when a checkfield is checked in a gridview and the folder name should be the first colum name.i use the following code,
protected void GridView1_SelectedIndexChanged(object sender, EventArgs e)
{
foreach (GridViewRow row in GridView1.Rows)
{
CheckBox ck = ((CheckBox)row.FindControl("CheckBox1"));
if (ck.Checked)
[Code]......
But it doesn't work.
when i set autogenerate=true it create afolder as per the autogenerate columns index.
HTML
<asp:GridView ID="GridView1" HeaderStyle-BackColor="#3AC0F2"
HeaderStyle-ForeColor="White" runat="server" AutoGenerateColumns="False"
AutoGenerateSelectButton="True" onselectedindexchanged="GridView1_SelectedIndexChanged1"
>
<Columns>
<asp:TemplateField HeaderText="Id">
<EditItemTemplate>
<asp:TextBox ID="TextBox1" runat="server" Text='<%# Bind("Id") %>' ></asp:TextBox>
</EditItemTemplate>
[code]....
View 1 Replies
Similar Messages:
Dec 6, 2010
I am trying to edit data using checkbox value. Firstly, I created popup window which using querystring some data from main page. In popup window, I want to change the checkbox value. For example, I made setSpare column and given the value to show bit data type such as 0 or 1 using checkbox(false or true). If some data has non setSpare(means 0), it wil lbe come out uncheckbox. If I want to check it and clicking submit button, It was not change. I am going to show the code below.
public partial class AddSpare : BasePage
{
string ObjectId;
protected void Page_Load(object sender, EventArgs e)
{
ObjectId = Request.QueryString["ObjectId"];
displayComInfo(ObjectId);
}
protected void displayComInfo(string ObjectId) // it informed relative data on web through using DB.
{
string query = "usp_ShowComputerList";
try
{
using (SqlConnection conn = new SqlConnection(ConfigurationManager.ConnectionStrings["SCSConnectionString2"].ConnectionString))
{
SqlCommand cmd = new SqlCommand(query, conn);
cmd.CommandType = System.Data.CommandType.StoredProcedure;
SqlParameter paramobjectId = cmd.Parameters.Add("@ObjectId", System.Data.SqlDbType.Int);
paramobjectId.Value = ObjectId;
conn.Open();
SqlDataReader dr = cmd.ExecuteReader();
if (dr.Read())
{
ModelTxt.Text = dr["Model"].ToString();
ModelTxt.ReadOnly = true;
ComputerTxt.Text = dr["ComputerName"].ToString();
ComputerTxt.ReadOnly = true;
userTxt.Text = dr["UserName"].ToString();
userTxt.ReadOnly = true;
ntTxt.Text = dr["NtLogon"].ToString();
ntTxt.ReadOnly = true;
HDDTxt.Text = dr["HddSize"].ToString() + "GB";
HDDTxt.ReadOnly = true;
RAMTxt.Text = dr["MemorySize"].ToString() + "GB";
RAMTxt.ReadOnly = true;
SerialNoTxt.Text = dr["SerialNo"].ToString();
SerialNoTxt.ReadOnly = true;
TextBox1.Text = dr["Spare"].ToString();
inputChkSpare.Checked = (bool)dr["Spare"]; //(bool)dr["Spare"] display false or true.
dr.Close();
}
}
}
catch (Exception ex)
{
MessagePanel1.Type = MessageType.Error;
MessagePanel1.Text = MessagePanel1.Text = "This is an error." + ex.Message;
}
}
protected void okBtn_Click(object sender, EventArgs e)
{
string query = "usp_SetSpare";
try
{
using (SqlConnection conn = new SqlConnection(ConfigurationManager.ConnectionStrings["SCSConnectionString2"].ConnectionString))
{
SqlCommand cmd = new SqlCommand(query, conn);
cmd.CommandType = System.Data.CommandType.StoredProcedure;
SqlParameter paramobjectId = cmd.Parameters.Add("@objId", System.Data.SqlDbType.Int);
SqlParameter paramspare = cmd.Parameters.Add("@spare", System.Data.SqlDbType.Char);
paramobjectId.Value = ObjectId;
if (inputChkSpare.Checked == true) // if I change the check box, it does not bring the changed value. It will bring the above value(already displayed thing)
{
paramspare.Value = "1";
}
else {
paramspare.Value = "0";
}
conn.Open();
cmd.ExecuteNonQuery();
cancelBtn.Value = "Close";
okBtn.Enabled = false;
MessagePanel1.Type = MessageType.Information;
MessagePanel1.Text = "This computer is spare from now.";
}
}
catch (Exception ex)
{
MessagePanel1.Type = MessageType.Error;
MessagePanel1.Text = MessagePanel1.Text = "This is an error." + ex.Message;
}
}
View 2 Replies
Apr 13, 2013
I am getting the following error on on clikcing checkbox from checkbox list in my project.
Error:
Invalid postback or callback argument. Event validation is enabled using <pages enableEventValidation="true"/> in configuration or <%@ Page EnableEventValidation="true" %> in a page. For security purposes, this feature verifies that arguments to postback or callback events originate from the server control that originally rendered them. If the data is valid and expected, use the ClientScriptManager.RegisterForEventValidation method in order to register the postback or callback data for validation.
If i set <pages enableEventValidation="false"/> then on clicking the submit button the information is not saved in database just page is refreshed.
aspx.cs file code:
protected void btnSubmit_Click(object sender, EventArgs e) {
if (con.State == ConnectionState.Closed) {
con.Open();
}
SqlCommand cmd = new SqlCommand(@"insert into MainTable values(@CollegeName,@AffilatedWith,@CollegeType,@Country,@City,@State,@EstablishmentYear,
[code].....
View 1 Replies
May 7, 2015
when i checked the checkbox in parent gridview, all checkbox in child gridview will be checked.
how can i select the checkbox of child gridview checkbox in the when i select the checkbox from the parent gridview?
code behind
protected void OnCheckedChanged(object sender, EventArgs e)
{
[Code].....
View 1 Replies
Nov 11, 2010
I'm putting together a page that allows the user to enter a new record in an SQL table. A bunch of the fields in the table are bit datatypes. I want to use CheckBoxes to correspond to the bit datatype columns in the SQL table.
How do I bind the checkboxes to the SQL table columns?
Here's what I have, not sure if this is right:
[Code]....
View 1 Replies
Aug 20, 2010
I want to select all checkBox in Gridview when click to header checkBox.I have created design such that CheckBox is not available to header of Gridview.It is in other table. Below is design of gridview.
[Code]....
View 9 Replies
Dec 16, 2010
I want to create a folder to store some web controls, so the site structure doesn't have a zillion files in the root.
Except that if I create an ordinary folder, that folder is also visible on the web site. MSDN said you cannot put it in App_Code, and it doesn't really make sense to put it in other special folder like App_Data or App_Theme.
View 3 Replies
Sep 7, 2010
I want to give my users the ability to select a row by clicking anywhere on the GridView.
So based on the selected Row i will change one particular column value based on my validation.
How can i add the click event on the GridView?
View 4 Replies
Oct 9, 2010
Within a WizardStep in the AccountManagement.aspx page, I have the following Gridview:
[Code]....
When a UserName HyperLinkField is clicked, I want to go to the another WizardStep.
With DataNavigateUrlFormatString="AccountManagement.aspx?user={0}, I think the page refreshes rather than posts back.
How do I get to another WizardStep? Do I have to cause a PostBack rather than a refresh?
View 1 Replies
Aug 7, 2013
Can I have a example for Selecting GridView Row by clicking anywhere on the row without select command and also mouse over and mouse out background color change.
View 1 Replies
Jan 19, 2011
i have a gridview which Pagesize set to 5. There will be some error while i click to page2, i knew it was caused by what but i got no good idea how to solve it.
Me.GridView.DataSource = DT.DefaultView
Me.GridView.DataBind()
For x As Integer = 0 To DT.Rows.Count - 1
If DT.Rows(x).Item("status") = "Verifying" Then
Me.GridView.Rows(x).BackColor = Drawing.Color.Tomato
ElseIf DT.Rows(x).Item("status") = "Processed" Then
Me.GridView.Rows(x).BackColor = Drawing.Color.CadetBlue
End If
Next
View 1 Replies
Jun 29, 2010
i have a problem with my asp project.i have a gridview that is created dynamically and all rows cells contain hyperlinks that are created dynamically also
all i wanna do is after clicking at any on this hyperlinks i can get the index of the cell where this hyperlink i clicked exist or even the text of the hyperlink i clicked but i don't know how i can do this
The eventhandler for the hyperlink is as follow:
[Code]....
i write in this code selectedrow.cells[0] but this is not what i want.What i need to replace 0 with the index of the cell i clicked
View 10 Replies
Apr 20, 2010
i'm working in visual studio 2005 c#
how do i change gridview datasource by clicking a link ;
how do i insert code to the onclick evvent to change the data source ?
View 2 Replies
Oct 19, 2012
changing gridview field by clicking a check button in gridview
View 1 Replies
Mar 20, 2010
[Code]....
So it works fine i can hover on gridview rows. Now I need to add OnClick event. When Row is clicked I need to pass value from SQL server table to textbox. How can I Add something like onrowclickevent? where I can use clicked row arguments?
View 7 Replies
May 28, 2010
I have a gridview that I have bound to a sqldatasource. However I have the gridview changing data shown per a drop down list and textbox so I can choose how I am searching.
My code includes changing the select command of the data source and rebinding the gridview.
My issue is that if I implement the edit button and click edit the grid view seems to resort back to the original select command that was entered when I created the datasource.
Is there any way to get the gridview to do what I want it to?
View 11 Replies
Mar 12, 2011
I have a gridview and sqldatasource in a form. My sqldatasource has select,delete and update command. The delete command is working but the update doest not work when I click the update command field.
Here is my code [Code]....
View 3 Replies
Feb 4, 2011
I am Working on a ASP.net project(VB.net), i have a gridview to display names of "Patients". Each patient has a unique "labID",
I have stored the patients "diagnosis" information in seperate tables( stool,urine, blood etc)
what I need is to retrieve this info when I click on a patients name in gridview.
View 6 Replies
May 3, 2010
I have a GridView that I was previously populating via an ObjectDataSource, and this code was working perfectly (ie, when the checkbox was checked Checkbox.Checked = true):
CODE BEHIND:
[Code]....
[Code]....
View 9 Replies
Mar 11, 2011
<asp:TemplateField>
<ItemTemplate>
<asp:CheckBox ID="chkRDR1" runat="server"/>
</ItemTemplate>
</asp:TemplateField>
=========================================================================================
Dim checkbox As CheckBox = CType(row.FindControl("chkRDR1"), CheckBox)
View 2 Replies
Jun 3, 2010
I created a grid and successfully done update, delete, filled functionality.
But whenever I m clicking on Gridview row, its hieght get increased and color of the row become red while clicking on edit button. But this problem is occuring in Mozilla,IE7 not in IE6. Project is running good in IE6. What could be the solution for this.
View 8 Replies
Oct 27, 2010
I have a button called Next outside the GridView. If I click on Next, I want to highlite the 2nd row and display the details of the 2nd row below in panel. If again I click on Nextm i want to highlite 3rd row and want to display 3rd row results in a panel
View 8 Replies
Oct 15, 2010
Is there any way to stop Gridview to turn back to first row when user click edit link button. Say there are 50 rows in gridview, user scrolled down to 45th row then click edit button. Gridview shifted to editmode but user need to roll down back again to reach the row 45th.
View 1 Replies
Feb 3, 2011
I have created a website that has some gridview controls that call stored procedures in a SQL db and display the results of the procedures. Two of the gridview controls have sorting enabled, and one has pagination enabled.
The site loads for all users who have tried it so far.
However, one user gets a "webpage not found" (HTTP 400 Bad request) error whenever they click on the pagination links or sorting links on the gridview control. It seems like it's not a security issue because the website runs as a user with permission to the database.
View 3 Replies
Mar 23, 2010
To have a checkboxlist and have the checkbox only checked if I click on the checkbox itself (and not the text)?
View 6 Replies