Search

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

Matching Posts

  • Re: How can I change the format of the calendar?

    Hi, you need to open up the eventcalendar control project in vs2005, then alter the project as I metioned and rebuild to generate the new .dll. Once you have the new control you can add it to your clubwebsite in place of the old control, then make the changes to the events_edit page as mentioned earlier. John
    Posted to Club Web Site Starter Kit (Forum) by BioMash on 12/1/2005
  • Re: How can I change the format of the calendar?

    Hi. If you download the sourcecode for the events control you could then alter the date text to be a hyperlink which would achieve what you want. you need to alter the div code at line 605 in eventscalendar.cs of the control source code: <code> Change: DivCtrl div = new DivCtrl(day.DayNumberText); div.ApplyStyle(DayNumberStyle); cell.Controls.Add(div); to something like: HyperLink hl = new HyperLink (); hl.Text = day.DayNumberText; hl.NavigateUrl = "event_edit.aspx?action=new&date=" + day
    Posted to Club Web Site Starter Kit (Forum) by BioMash on 11/30/2005
  • Re: News articles from newest to oldest

    hey:) yeah I see that now I have played with it. It's the paging that causes the problem, I have copied some code below that will work, it could probably do with some tidying up but see how you go....maybe I'll get more time this weekend..... hope it helps John. <code> set ANSI_NULLS ON set QUOTED_IDENTIFIER ON go ALTER PROCEDURE [dbo].[PagedAnnouncementList] ( @pageNum INT = 1, @pageSize INT = 10 ) AS DECLARE @rows INT DECLARE @keydate DATETIME DECLARE @keyid INT DECLARE @rowCount FLOAT /
    Posted to Club Web Site Starter Kit (Forum) by BioMash on 11/30/2005
  • Re: News articles from newest to oldest

    Hi I am yet to play around with the club site....only downloaded it just now but it looks as though you need to alter the pagedannouncementslist stored procedure to order the announcements descending instead of ascending: <code> set ANSI_NULLS ON set QUOTED_IDENTIFIER ON go ALTER PROCEDURE [dbo] . [PagedAnnouncementList] ( @pageNum INT = 1 , @pageSize INT = 10 ) AS DECLARE @rows INT DECLARE @keydate DATETIME DECLARE @keyid INT DECLARE @rowCount FLOAT /* yes we need a float for the math */ IF
    Posted to Club Web Site Starter Kit (Forum) by BioMash on 11/29/2005
  • function to add text to one of two text boxes not working...

    Hi I have the following code which doesn't work, some help would be nice:) I have a dynamically generated asp.net table and in the cells I have hyperlinks with an onclick event added I then pass a string to the javascript and I want to add it to one of the textboxes depending on their existing content. The code is .net 2 within a user control that is using a master page. I thought it might be having problems with the names that .net gives the controls but i tried using standard html input fields
    Posted to Client Side Web Development (Forum) by BioMash on 6/21/2005
  • Re: generic error, saving to unc path

    Thanks for the input, I will give it a go. I thought that giving permissions to everybody should have solved the problem....but I must be wrong. One of the machines is running 2003 server and one is running 2000 server so I will try and recreate the aspnet user on each machine. Does asp.net worker process run as same user on both OS?
    Posted to System.Drawing/GDI+ (Forum) by BioMash on 6/15/2005
  • generic error, saving to unc path

    Hi I have the folloeing code and I am trying to save the image to 2 different locations. one locally and one on a network share accross a vpn, I have checked permissions and they seem to be fine, I have also tried a seperate stream after reading another thread but I am always getting the same error. I also tried setting up a virtual directory in IIS and then using serv.mappath, but it always returned a local path rather than the network share!! Some help would be appreciated. <code> string
    Posted to System.Drawing/GDI+ (Forum) by BioMash on 6/14/2005
  • Re: advice for storing reservation/booking date ranges...

    Yes, unfortunately I have to cater for users who are not keeping the calendar uptodate hence using both the unknown and available status. The default will be unknown, so anything not in the table will be that status and then it is up to users to use the calendar to update the properties availability, so there are three status's, available, on-hold and booked. These three will be in the table. I think I will proceed as is and see how I go....thanks for the input.
Page 1 of 3 (30 items) 1 2 3 Next >