Forum: ASP.NET 34 Days Ago |
| Replies: 5 Views: 358 Try this
string str = TextBox1.Text.Trim();
for (int i = 0; i < str.Length; i++) {
if (!str[i].Equals(Convert.ToChar(32))) {
newList.Add(str[i]);
... |
Forum: ASP.NET Oct 28th, 2009 |
| Replies: 5 Views: 343 Have you specified
DropDownList1.DataTextField = "";
DropDownList1.DataValueField=""; |
Forum: ASP.NET Sep 29th, 2009 |
| Replies: 3 Views: 275 Can you elaborate your problem as to exactly what you are trying to do |
Forum: ASP.NET Aug 28th, 2009 |
| Replies: 5 Views: 360 u need to bind the below properties
DropDownLanguages.DataTextField =
DropDownLanguages.DataValueField = |
Forum: ASP.NET Aug 28th, 2009 |
| Replies: 14 Views: 1,368 did u try debugging the code? |
Forum: ASP.NET Aug 27th, 2009 |
| Replies: 14 Views: 1,368 |
Forum: ASP.NET Jul 21st, 2009 |
| Replies: 6 Views: 501 transfer the session contents to an array and then populate the gridview from array |
Forum: ASP.NET Jun 18th, 2009 |
| Replies: 11 Views: 1,354 why dont you add check boxes in the datagrid? for the rows whose checkboxes are checked, highlight the row |
Forum: ASP.NET Apr 13th, 2009 |
| Replies: 4 Views: 557 you can use cookies and set the expiry time as you want. |
Forum: ASP.NET Apr 9th, 2009 |
| Replies: 4 Views: 557 have you started coding? if not then start it, if you get stuck then help is always there |
Forum: ASP.NET Apr 2nd, 2009 |
| Replies: 6 Views: 4,974 you can take the resulr in a reader then populate the reader contents in arraylist. then populate the values form arraylist. i have coded it in C#
SqlCommand m_Command=new... |