Thanks Navaneeth.
A kamath
Posts
-
Wild character -
Wild characterHai I am doing my project in asp.net/c# and Firebird as database. I have a description field. When I read the content of the description, it is coming like this "e some character & quote. How can I change it like this "some character".
-
validationThank you.
-
validationThanks .Can we keep both either 3 or 4 in single expression.because some phone no is having 4 digit first and some having 3 digit first.
-
validationThanks, but if the first number should be either 3 or 4 so how should we give? like 0000-000-000 or 000-000-000
-
validationyes
-
validationthanks
-
validationI want to know how should we give validation for phone numbers. my phone number format is 0000-000-000
-
ImportingThanks, But I am using Firebird as the database.
-
ImportingI want to import excel sheet into my database. Can anybody help me to find any article or books to find how to do this(asp.net/c#).
-
DeleteIt is showing error like this NullReferenceException: Object reference not set to an instance of an object. at Details.DetailsView1_ItemDeleting(Object sender, DetailsViewDeleteEventArgs e)
-
DeleteIt is inside a details view. I have taken the values inside the details view from session object I have a kept a int to take the datakey value. but this is showing an error int Refno = (int)DetailsView1.DataKey.Value;
-
DeleteI am trying to delete a record using item deleteing event. But it is showing error as null reference exception. Can anybody help please.
-
GridviewThanks, I am doing in Asp.net/c#.
-
GridviewI have a gidview. Inside one cell I want to show only 20 characters and rest have to hide.Can anybody help please
-
SessionDataTable dt = new DataTable(); dt.Columns.Add("feild1", System.Type.GetType("System.Int32")); dt.Columns.Add("feild2", System.Type.GetType("System.String")); dt.Columns.Add("feild3", System.Type.GetType("System.String")); dt.Columns.Add("feild4", System.Type.GetType("System.String")); dt.AcceptChanges(); DataRow l_rowDetails = dt.NewRow(); l_rowDetails["feild1"] = (GridView1.SelectedRow.Cells[1].Text); l_rowDetails["feild2"] = GridView1.SelectedRow.Cells[2].Text; l_rowDetails["feild3"] = GridView1.SelectedRow.Cells[3].Text; l_rowDetails["feild4"] = GridView1.SelectedRow.Cells[4].Text; dt.Rows.Add(l_rowDetails); dt.AcceptChanges(); Session["datatable"] = dt;
-
SessionI have a Datagrid. I am taking a selected row to the datatable(session).My problem is inside the datagrid in one cell there is a textbox. the value from the textbox is not binding to datatable. Can anybody help please.
-
Deatils viewThanks for the reply. But details view is binding from the selected row from datagrid. using repeater control can we bind the data from the selected row of datagrid
-
Deatils viewI have a detail view like this feild1 ***** feild2 ***** feild3 ****** feild4 ******* can i make like this feild1 ********* feild2 ********** feild3 ******** feild4 ******** can i do this and how?
-
Details ViewThanks. I want this inside edit template. Can it possible.