Forum: ASP.NET 31 Days Ago |
| Replies: 5 Views: 355 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 32 Days Ago |
| Replies: 5 Views: 334 Have you specified
DropDownList1.DataTextField = "";
DropDownList1.DataValueField=""; |
Forum: ASP.NET Sep 29th, 2009 |
| Replies: 3 Views: 273 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,346 did u try debugging the code? |
Forum: ASP.NET Aug 27th, 2009 |
| Replies: 14 Views: 1,346 |
Forum: ASP.NET Jul 21st, 2009 |
| Replies: 6 Views: 499 transfer the session contents to an array and then populate the gridview from array |
Forum: ASP.NET Jun 18th, 2009 |
| Replies: 11 Views: 1,347 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: 553 you can use cookies and set the expiry time as you want. |
Forum: ASP.NET Apr 9th, 2009 |
| Replies: 4 Views: 553 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,957 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... |
Forum: PHP Feb 27th, 2008 |
| Replies: 5 Views: 738 you can set session variables when the user login as admin .check if the session variable is set, if so then display the link or else don't |
Forum: PHP Feb 11th, 2008 |
| Replies: 22 Views: 1,841 in ur retrieve.php it should be
and not $_REQUEST['name'] |