Search

You searched for the word(s): userid:752701

Matching Posts

  • Re: Book Recomendations?

    Thank you everyone, starting with 2.0 and will preorder 3.5 :)
    Posted to Book Reviews (Forum) by silverkm on 6/27/2009
  • Re: Book Recomendations?

    Excellent thanks for the quick responses. I have started with the ASP.NET 2.0 book as the new 3.5 version does not come out until August. Think it would be worth my time doing this? Or is 3.5 that much different that I would be better off starting with a begining 3.5 book?
    Posted to Book Reviews (Forum) by silverkm on 6/26/2009
  • Book Recomendations?

    Hey, I have been out of the loop for a while. Last book I read cover to cover was sitepoint build your own asp.net site (the 1.1 version). I really enjoyed this book, and I did read some pro asp.net 2.0 in c#. I am looking for a book that would be a good starter, geared towards a intermediate / skilled beginner. Would prefer something that is tutorial based (build a site while going through the book). Any recomendations would be appreciated. Thank You
    Posted to Book Reviews (Forum) by silverkm on 6/24/2009
  • Re: Book Recommendations?

    Thanks a bunch! Sorry I didn't see the book review forum... it was early in the morning ;
    Posted to Getting Started (Forum) by silverkm on 8/14/2007
  • Book Recommendations?

    Hey, I wasn't sue where the best place to post this (or even if this should be posted here) I am looking for an intermediate asp.net (C#) book. I read Site Points Buid an ASP.NET website using C# or VB which is amazing, but I'm left wanting more. I'm enthralled with the language and want to learn advanced techniques. Not sure if getting started on AJAX would get me there or what. Has anyone read a book that's written for someone who already has a basic grasp on asp.net but goes further
    Posted to Getting Started (Forum) by silverkm on 8/14/2007
  • Re: How to fill data in Array from a DataTable?

    Not sure if there's a build in method for this, but you can get this by looping Try something like this: DataTable dt = new DataTable(); 'code to fill dt here String[] strArray = new string[dt.Rows.Count+1]; for(int i = 0; i < dt.Rows.Count -1; i++) { DataRow dr = dt.Rows[i]; strArray = dr.ToString(); } As I'm not on a computer with visual basic I havn't had a chance to test it, but give it a go
    Posted to Getting Started (Forum) by silverkm on 8/14/2007
  • Re: Creating a DropDown List on Edit Command in a DataList

    I don't know how to thank you! It worked! Thank you so much for halping me with this!!
    Posted to Web Forms (Forum) by silverkm on 8/13/2007
  • Re: Creating a DropDown List on Edit Command in a DataList

    cleanUp() just clears all the error message labels and makes sure all the text is the appropriate color (some changes when there are input errors) It doesn't touch the drop-down list at all Once again thanks for the response!
    Posted to Web Forms (Forum) by silverkm on 8/13/2007
  • Images / Login / General Help

    Hey, I am relitivly new to Asp.net (ya know read the book picked up what I need to know from various other sources) I'm not sure if this is the best place to post this, but what I am looking for is some extra help. The site I've build is going to be my first entry into my portfolio therefore I want it to be perfect. Therefore I have a few things that are bothering me. The site is pretty basic: a regular small business database drivin site with an admin section for updating content / posting
    Posted to Getting Started (Forum) by silverkm on 8/13/2007
  • Re: Creating a DropDown List on Edit Command in a DataList

    Hey Thanks for the Response! I gave it a go.. it doesn't throw an error anymore but it still does not populate the drop down list thanks Kellly
    Posted to Web Forms (Forum) by silverkm on 8/13/2007
Page 1 of 3 (22 items) 1 2 3 Next >