Search

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

Matching Posts

  • Re: can't edit events and news pages

    I do believe if you are using VWD express you cannot change the settigs, but if you are using SQL management you should be able to. I'll check it out later today and give you a step by step. As far as the copy and paste, again I will look into it more, but I believe it could be that you are copying from a app with formatting, what you are pasting into is a multiline textbox. Most people use http://freetextbox.com/ or other html editor. That will allow you to save formatted text.
    Posted to Club Web Site Starter Kit (Forum) by MaineOne on 11/21/2009
  • Re: can't edit events and news pages

    On database issue, I was incorrect you should be able to change it useing VWD express. Goto the Database Explorer and right click on the table then select Open Table Definition. If that does not work for you let me know if it even opens the definition view.
    Posted to Club Web Site Starter Kit (Forum) by MaineOne on 11/21/2009
  • Re: can't edit events and news pages

    By default the description column is set to varchar(800), if you go into the Events table and set it to varchar(max) it should fix the issue.
    Posted to Club Web Site Starter Kit (Forum) by MaineOne on 11/19/2009
  • Re: can't edit events and news pages

    No it will not throw an error, but it is because you are truncating a field. changing the varchar will fix the problem. Why it does not throw an error is that the redirect is still triggering. Therefore you do not have a chance to see the error.
    Posted to Club Web Site Starter Kit (Forum) by MaineOne on 11/19/2009
  • Re: Recurring Calendar Events

    Yes, there are 2 ways it can be done. 1. Saving them to database: This way requires you save the recurring events to the database. You would have to add a radiobutton or something you can select to state what type of recurring event(daily,weekly,ect) and how many times, then when you save it have the code behind check for the value and loop through and add the events. Potential problems: could make for a very large database table, so you may want to limit the amount of times an event can recure.
    Posted to Club Web Site Starter Kit (Forum) by MaineOne on 11/15/2009
  • Re: Merge Databases

    If you have remote access to your database(not web access like GoDaddy) then you can create the database on your site. then run aspnet_regsql located in C:\Windows\Microsoft.NET\Framework\v2.0.50727. If you have web access only to you databese contact your hosting provider. That will set up the asp tables and such. Next in the app_data folder on your local site you need to open club_add.sql in notepad and run that query against the database using either your hosting companies query feature or by
    Posted to Club Web Site Starter Kit (Forum) by MaineOne on 11/15/2009
  • Re: Small Business Starter Kit CSS problems with Chrome

    Sorry for c# users it would be. if ((Request.UserAgent.IndexOf("AppleWebKit") > 0) | (Request.UserAgent.IndexOf("Unknown") > 0) | (Request.UserAgent.IndexOf("Chrome") > 0)) { Page.ClientTarget = "uplevel"; }
    Posted to Small Business Starter Kit (Forum) by MaineOne on 10/13/2009
  • Re: Small Business Starter Kit CSS problems with Chrome

    I found a solution. The only problem is that it only works in the pre-init of the aspx pages. The master page does not have a pre-init and it does not work in the page_init or page_load. This means you have to add it to all aspx pages. Also it fixed the problem of the menu item not working, but did cause it to shift right in chrome(I hope a minor problem compared to it not working)I haven't looked into this yet.. Protected Sub Page_PreInit(ByVal sender As Object, ByVal e As System.EventArgs)
    Posted to Small Business Starter Kit (Forum) by MaineOne on 10/13/2009
  • Re: Small Business Starter Kit CSS problems with Chrome

    Chrome causes problems on my company's asp.net site also. I checked browser info for people logging in using diffrent browsers. As you can see the Chrome is missing the .NET CLR, at this point I believe this is causing the problem, If I find a work around I will post it, but I will be doing it in my time as it is a company only site and they do not care about cross browser compatibilaty. Chrome: Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US) AppleWebKit/532.0 (KHTML, like Gecko) Chrome/3.0.195
    Posted to Small Business Starter Kit (Forum) by MaineOne on 10/10/2009
  • Re: ImageFetch.ashx?Size=2&ImageID=11

    Its has been awhile since I worked with the club starter kit, but it sounds like you have a photo(id=11) linked to an event. I believe one of the problems with this was that if you delete a photo it does not clear that link in the event, therefore when the event tries to load in the events list or default page you will get a null error. Check your images table and make sure you have a photo with an Id of 11, if not go into events table and clear the photo column, if you cannot clear it give it a
    Posted to Club Web Site Starter Kit (Forum) by MaineOne on 10/3/2009
Page 1 of 29 (283 items) 1 2 3 4 5 Next > ... Last »