Help Needed
-
Hi I want to pass a column value of datagrid from form1 to form2. It is not passing the value. can anyone help me to solve this issue. the column has to display only text join, but it has to pass the databasevalue. following is the code. DataTable dt = new DataTable(); DataRow dr; DataView dv; if (dbReader != null) { dt.Columns.Add(new DataColumn("Join" , typeof(string))); while (dbReader.Read()) { dr = dt.NewRow(); StringBuilder strTop = new StringBuilder(""); strTop.Append(ShowImageNew(dbReader)); strTop.Append("
"); strTop.Append(""> strTop.Append(""); dr[0] = "
[Join](joinInGroup.aspx?Category =)
"; dt.Rows.Add(dr); } } thanks
-
Hi I want to pass a column value of datagrid from form1 to form2. It is not passing the value. can anyone help me to solve this issue. the column has to display only text join, but it has to pass the databasevalue. following is the code. DataTable dt = new DataTable(); DataRow dr; DataView dv; if (dbReader != null) { dt.Columns.Add(new DataColumn("Join" , typeof(string))); while (dbReader.Read()) { dr = dt.NewRow(); StringBuilder strTop = new StringBuilder(""); strTop.Append(ShowImageNew(dbReader)); strTop.Append("
"); strTop.Append(""> strTop.Append(""); dr[0] = "
[Join](joinInGroup.aspx?Category =)
"; dt.Rows.Add(dr); } } thanks
I am sorry but, I have to ask, how are u passing the values to the other page? if all you want is to pass a value from one page to another, why dont u try using a query string? or storing in a cookie perhaps? "Rejoice always, pray without ceasing, in everything give thanks; for this is the will of God in Christ Jesus for you."1Thess. 5:16-18