If I have more than 4 featured ads on the page, the featured ads runs over the footer area of my page instead of pushing that down. It works in IE but in firefox is where the bug is. Any ideas on what I can do to fix this?
In Admin/Ads.aspx results the ENTRY DATE is showing some strange dates. I have tried changing the formatting inside the column collections and have had varying results non of which have been accurate. I am running final version classifieds and this is the
last bug I have to fix - I know it's not that important as it is for site admin use but it would be nice to solve the problem.
When managing photos for your ad (when you have multiple photos), and you choose to make a different photo your thumbnail for that ad, nothing changes.
Cause:
In the ManagePhotos.aspx.vb file, in the Page_load event, someone declared an adId variable that masks the public property adId. Therefore, when it is set in the following lines, it's the local scope variable and not the pages property that is set. So, when
the user selects a different photo, the AdID (from public property) that goes up in the SetAdPreviewPhoto is never anything but 0 (there is never an adid of 0 in the database since it starts with 1). No error is encountered or raised.
Solution:
simply remove the declaration of the localy declared adId from the Page_load event of ManagePhotos.aspx.vb
I did add a line setting the property to 0 (zero) in its place.
flostin
Member
38 Points
28 Posts
Re: Relist with current date instead of the original created date
Aug 28, 2009 03:35 PM|LINK
Hi,
How did you solve this problem?
thedee
Member
5 Points
12 Posts
Bug with firefox and the master/default page
Sep 17, 2009 07:35 PM|LINK
If I have more than 4 featured ads on the page, the featured ads runs over the footer area of my page instead of pushing that down. It works in IE but in firefox is where the bug is. Any ideas on what I can do to fix this?
learner01
Member
36 Points
18 Posts
Re: Bug with firefox and the master/default page
Sep 18, 2009 01:07 PM|LINK
try firebug, may help you figuring out the problem....
flostin
Member
38 Points
28 Posts
Re: Strange 'date formatting' in Admin/Ads.aspx
Oct 21, 2009 03:15 PM|LINK
Has anyone else experienced this little problem?
In Admin/Ads.aspx results the ENTRY DATE is showing some strange dates. I have tried changing the formatting inside the column collections and have had varying results non of which have been accurate. I am running final version classifieds and this is the last bug I have to fix - I know it's not that important as it is for site admin use but it would be nice to solve the problem.
Thanks
darkknight18...
Contributor
2674 Points
1040 Posts
Re: Strange 'date formatting' in Admin/Ads.aspx
Oct 29, 2009 01:21 AM|LINK
I think the issue is on the aspx page, and it from the date month being set as mm it should be MM
If there's something else going on let's see your code for the label or whatever is displaying the date.
Please remember to mark the post as answer that solves your issue.
This will be greatly benificial for other users.
mytonytiger
Member
22 Points
5 Posts
BUG: Setting ad thumbnail for an Ad.
Dec 15, 2009 01:41 AM|LINK
Problem:
When managing photos for your ad (when you have multiple photos), and you choose to make a different photo your thumbnail for that ad, nothing changes.
Cause:
In the ManagePhotos.aspx.vb file, in the Page_load event, someone declared an adId variable that masks the public property adId. Therefore, when it is set in the following lines, it's the local scope variable and not the pages property that is set. So, when the user selects a different photo, the AdID (from public property) that goes up in the SetAdPreviewPhoto is never anything but 0 (there is never an adid of 0 in the database since it starts with 1). No error is encountered or raised.
Solution:
simply remove the declaration of the localy declared adId from the Page_load event of ManagePhotos.aspx.vb
I did add a line setting the property to 0 (zero) in its place.