Identified bugs and fixes for the ClubSite Starter kit

Rate It (4)

Last post 10-20-2009 9:33 PM by cramerhwood. 118 replies.

Sort Posts:

  • Re: Identified bugs and fixes for the ClubSite Starter kit

    09-12-2007, 1:05 PM
    • Member
      39 point Member
    • ta4ka
    • Member since 09-08-2007, 12:14 PM
    • Posts 20

    I guess the c# code for the same would be:

    Convert.ToInt32("0" + AlbumList2.SelectedValue), i'm trying this now and it seems ok. 

  • Re: Unable to update Email field

    09-12-2007, 1:32 PM
    • Member
      39 point Member
    • ta4ka
    • Member since 09-08-2007, 12:14 PM
    • Posts 20

     The c# code:

    protected void update_Click(object sender, System.EventArgs e) {
            MembershipUser user 
    Membership.GetUser();
            
    DataSetTableAdapters.MemberInfoTableAdapter da = new DataSetTableAdapters.MemberInfoTableAdapter();
            if 
    ((Email.Text !user.Email)) {
                user.Email 
    Email.Text;
                
    Membership.UpdateUser(user);
            
    }
            
    try {
                da.Update(((Guid)(user.ProviderUserKey)), Addr.Text, Phone.Text, fname.Text, lname.Text, ((Guid)(user.ProviderUserKey)))
    ;
                
    ContactStatus.Text "Details have been updated sucessfully.";
                
    ContactStatus.ControlStyle.ForeColor Drawing.Color.Black;
            
    }
            
    catch (Exception ex) {
                ContactStatus.Text 
    ("Error updating contact details: " + ex.Message);
                
    ContactStatus.ControlStyle.ForeColor Drawing.Color.Red;
            
    }
        }

  • Re: locations_list.aspx bad event wireup

    05-05-2008, 1:24 PM
    • Member
      2 point Member
    • rrrodz
    • Member since 04-15-2008, 12:08 AM
    • Posts 5

    I'm getting the following error when using this code:

    Server Error in '/ClubWebSite1' Application.

    Object reference not set to an instance of an object.

    Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.

    Exception Details: System.NullReferenceException: Object reference not set to an instance of an object.

    Source Error:

    Line 87:             Dim FirstButton As Button
    Line 88:             FirstButton = CType(PageButtons.FindControl("P1"), Button)
    Line 89:             FirstButton.Style("background-color") = "#990000"
    Line 90:             FirstButton.Style("color") = "#FFFFFF"
    Line 91:         End If

    Source File: C:\Documents and Settings\rrodriguez\Personal\Visual Studio 2005\WebSites\ClubWebSite1\News_List.aspx.vb    Line: 89

    Stack Trace:

    [NullReferenceException: Object reference not set to an instance of an object.]
       News_List.Page_Load(Object sender, EventArgs e) in C:\Documents and Settings\rrodriguez\Personal\Visual Studio 2005\WebSites\ClubWebSite1\News_List.aspx.vb:89
       System.Web.UI.Control.OnLoad(EventArgs e) +99
       System.Web.UI.Control.LoadRecursive() +47
       System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +1436
    

  • Re: locations_list.aspx bad event wireup

    07-01-2008, 4:10 PM
    • Member
      2 point Member
    • phoenyx33
    • Member since 06-25-2008, 1:20 PM
    • Posts 2

    Because there are no pagebuttons until you get more then a page of items, they don't exist.

    Put a 'try...catch...end try' around it that sinks the exception when they aren't there.

  • Re: Identified bugs and fixes for the ClubSite Starter kit

    10-25-2008, 11:40 AM
    • Member
      4 point Member
    • zazzzmannn
    • Member since 10-25-2008, 3:35 PM
    • Posts 2

    I have been sifting through the help topics and have not seen this so forgive me if I'm repeating a previous entry.  I am brand new to this, and I have just installed the club site first edition.  I am getting an error while trying to create my first user.  It keeps kicking out an invalid password error telling me that a minimum of 7 digits and one has to be numeric.  I assure you that I have been doing just that.  The error keeps comming.  Can anyone help?

  • Re: Identified bugs and fixes for the ClubSite Starter kit

    10-29-2008, 9:23 PM
    • Member
      335 point Member
    • typhoid
    • Member since 08-10-2006, 1:14 PM
    • Posts 85

    zazzzmannn:

    I have been sifting through the help topics and have not seen this so forgive me if I'm repeating a previous entry.  I am brand new to this, and I have just installed the club site first edition.  I am getting an error while trying to create my first user.  It keeps kicking out an invalid password error telling me that a minimum of 7 digits and one has to be numeric.  I assure you that I have been doing just that.  The error keeps comming.  Can anyone help?

    If I remember correctly, the default configuration requires one character in the password to be non-alphanumeric.  In other words, you have to use a special character like "!", "*", "%", etc.

     

  • Re: Identified bugs and fixes for the ClubSite Starter kit

    11-03-2008, 1:01 PM
    • Member
      4 point Member
    • zazzzmannn
    • Member since 10-25-2008, 3:35 PM
    • Posts 2

     Thank you so much it is working now

  • Re: Identified bugs and fixes for the ClubSite Starter kit

    05-08-2009, 1:28 PM
    • Member
      10 point Member
    • Guy Godwin
    • Member since 04-16-2008, 5:43 PM
    • Northern Kentucky
    • Posts 87

    Does anyone on here know if the starter kit is getting these bugs applied or do we need to step through all of these and apply all of them?

    I am a begginer and neeed to get a site for a local Youth Flag Football league and beleive this kit could be my answer. ( I hope )

    Would I be better off starting with the expanded sites? or this one?

  • Re: Identified bugs and fixes for the ClubSite Starter kit

    05-08-2009, 2:18 PM
    • Member
      246 point Member
    • BugSlayer
    • Member since 02-23-2006, 9:43 PM
    • Mechanicsburg
    • Posts 58

    I would suggest U go for the new ClubSite Starter kit...the one thats designed for VS2008 DotNet 3.5

    Not only does it have less bugs (if any) but also has tons of other cool new features.

    So if U R already not invested in this Starter Kit...go for the new better one.

    Thanks 

    "Our truest life is when we are in dreams awake." - Henry David Thoreau
  • Re: Identified bugs and fixes for the ClubSite Starter kit

    05-08-2009, 2:30 PM
    • Member
      10 point Member
    • Guy Godwin
    • Member since 04-16-2008, 5:43 PM
    • Northern Kentucky
    • Posts 87

    I am really just getting into it. (24 hours in)

    Can I use VS2005 with it? Or do I need to upgrade?

  • Re: Identified bugs and fixes for the ClubSite Starter kit

    05-08-2009, 4:20 PM
    • Member
      246 point Member
    • BugSlayer
    • Member since 02-23-2006, 9:43 PM
    • Mechanicsburg
    • Posts 58

    Upgrading would be best.

    Just like Visual Web Developer FREE version of VS2005,

    there's one available as an equivalent of VS2008, but I think Vista or a 64-bit OS may be the pre-requisite for it (but I'm not sure...it's best to check)

    If not, you try running it on VS2005 and see what happens...I don't think it'll CRASH in a really bad way....maybe minor tweaks may be required.

    "Our truest life is when we are in dreams awake." - Henry David Thoreau
  • Re: Identified bugs and fixes for the ClubSite Starter kit

    05-19-2009, 10:01 PM
    • Member
      2 point Member
    • iamsaltman
    • Member since 10-08-2007, 5:19 AM
    • Posts 14

    Do you have the link to the updated 3.5 Club Starter Kit?  When I look in the "Community" section of ASP.NET, all is see are the ASP.NET 2.0 Starter Kits.

     

     

    Thank you.

  • Re: Identified bugs and fixes for the ClubSite Starter kit

    05-20-2009, 9:39 AM
    • Member
      246 point Member
    • BugSlayer
    • Member since 02-23-2006, 9:43 PM
    • Mechanicsburg
    • Posts 58

    This is the Extended Starter Kit I'm talking about.

    http://www.asp.net/downloads/starter-kits/extended-club/

    It is not explicitly advertised as 3.5 version , but is new & improved and works real smooth with DotNet 3.5 framework and it's IDE.

    Many of the bugs mentioned in this thread are already resolved in this extended version.

    So you'd have no trouble getting up and running.

    Hope it helps.

    "Our truest life is when we are in dreams awake." - Henry David Thoreau
  • Re: Identified bugs and fixes for the ClubSite Starter kit

    10-20-2009, 9:33 PM
    • Member
      9 point Member
    • cramerhwood
    • Member since 09-11-2007, 8:43 AM
    • Posts 15

    I have searched for a solution to this with no avail and I am at my wits end. (Not very far to go) I found a thread of people having the exact same issue , but with no solution. Maybe a bug? I can rename, edit delete albums, but can't insert new albums. Someone mentioned changing the stored procedure from "private" to "isprivate" but it was already "isprivate". Am I missing something? I get no errors just resdirected to the album list. Please HELP!

Page 8 of 8 (119 items) « First ... < Previous 4 5 6 7 8