Everything posted by Sharetops
-
Anti Spam Forms
I actually use ASP.NET so I've not used PHP for a fair few years, although looking around there appears to be a few. This one http://www.phpcaptcha.org/ looks like it is quite easy to integrate into your web site (see the quickstart guide). Its a case of adding a couple of lines of code to your form processing code file to check that the code that the user entered matches the image that was generated.
-
Container height not constant cross browsers
I believe that its something to do with default margins, borders and padding not being the same across browsers. try explicitly setting them all manually to 0px
-
Anti Spam Forms
I suppose it depends on what level of protection you require. We opted for Captcha because it offers a very good level of anti-spam protection. I have a few other suggestions if you dont want to go the Captcha route: 1) Have a preset number of questions (maybe 10-20) with preset one word answers that the user can type, such as what colour is the sea, 2) Display a word with one letter missing that the user has to type in 3) Display an easy maths question such as what is 1+3 4) Display a line and ask the user to guess the angle of the line 5) Display a colour and ask the user to type the name of it (Issues for colour blind people or people using monochrome displays) 6) Play the sound of a number or word and ask the user to type it in (Issues for deaf people or if the user has no access to sound) The only issue with most of the above is that they are quite easy to get around for a computer
-
ASP.NET Issues
A couple of things to check: 1) Does the web site run fine using the local server? 2) Does the web site you are uploading to support .NET? 3) Check which version of .NET your provider is using. Many dont use the latest and you may find that you have to downgrade to 2.0 Without knowing what the error was I dont think we can help you much further.
-
Calling Public Function in Parent Page From User Control
I'm not sure that what you are wanting to do is possible as the UserControl gets included into your page class as a data member Can you make the method that you need to access in the container class a static?
-
ASP.NET disabling caching
Take a quick look here, although, I still have many problems with caching using the latest version of Firefox, using private browsing is the only way I seem to be able to fix it.
-
Need Suggestion
Your existing site looks tidy, although it probably has a fair few too many ads. I like the general layout and colour scheme (Im partial to blue ). I particularly like the menu down the left hand side; looks very cheerful. I do have an issue with switching to the newsletter though. The format seems to change and the page takes around 5 seconds to load making me feel like I've gone to a different web site for a split moment. Your new home page layout is better than your old one by the way.
-
Icon CSS Help
Hi Wickham, Thanks for the suggestion but if you set the position of the div to absolute and remove the width and height information from the div then you will find that it does not work as I explained in my previous examples. The position of the image is moved so that it is centered inside the div and no longer appears at 50,50 Mat
-
It's finally done : )
In my humble opinion it looks pretty good. I dont lilke red much in web sites but you've done a great job of combining iit with the black and greys. The ads are also well integrated, not sure if thats a good or bad thing though as they are very subtle.
-
Icon CSS Help
unfortunately that wont work for me. I've attached a diagram that shows whats happening: Figure 1 - This is the image inside the div before text is added. Note that it is in the correct place Figure 2 - This is the image with the text added to the div, as you can see the image has been moved so that it is centered in the div (not what I want) Figure 3 - This is what I actually need. I need the image to absolutely remain where I position it and not move, I then need the text to display directly under the image but center justified on the horizontal I could very easily accomplish this if I had static image icon sizes, but ufortunately I wont have this information so I cannot use any kind of static sizing
-
Website with user reviews
If you've got a fair bit of time and you want to roll your own solution then you would need a backend database that tracks the products and messages that are left by users. You can then query this database and generate markup to display in your products pages. If you've got the stomach for it then I would recommend rolling your own solution and not relying on third party controls / code as you keep complete control over what is displayed and how it is displayed.
-
Which language?
I would recommend ASP.NET with C# as its more portable and the code is decoupled from the markup. It also ties in really well with Silverlight in case your interested in adding any nice RIA type features. The only down sides are: * Windows servers are a bit more expensive to hire * .NET is a beast with a big learning curve
-
adsense Help required !
Did they send you the pin number out to your registered address yet? I believe they hold back the payments until you have entered it at the Adsense site. Im still waiting for mine 3 weeks on.
-
Directory List
Hi Everyone, Just thought I would post this site I came across that lists thousands of web directories along with its PR rating www.web-directories.ws The niche section may be of particular interest Hope it helps Mat
-
Icon CSS Help
Sorry I forgot to add the page tags. What you describe still causes the image to move so that it is no longer at position 50,50> I basically want the image to remain at exactly position 50,50 on screen whilst the text aligns itself to the bottom of the image and centered on the horizontal.
-
Review my site please
Hi Everyone, I'm looking for people to take a look at my web site / service and review it. The main things that I am looking for feedback on include: 1) General site layout 2) SEO issues 3) The concept of the service itself I plan on implementing an HTML version of the desktops in the near future for people that want to simply view the desktops without having to install Silverlight. I'm looking for brutal honesty Thanks Mat
-
Icon CSS Help
Hi Everyone, I've bumped into a small snag. I have an image (an icon) that has a textual description that needs to be displayed centered and beneath the image like shown in the attached Test1.png. I am currently using this: <div style="position:absolute; text-align:center; z-index:1; top:50px; left:50px"> <image src="someimage.png" /> <p>Icon Text</p> </div> This works but the as you can see I rely on absolute positioning and because the image and the text are inside the same div, the div expands to fit the text and moves the icon so that its top-left corner is no longer at 50,50. What I basically need to do is keep the image at 50,50 and have the text appear centered but placed at the bottom of icon image Any help will be greatly appreciated, I've tried all sorts of combinations and cannot seem to figure one out that works Mat
-
Hallo
Hi Everyone, Having a little CSS trouble so I googled a place to ask and found this place here, looks nice from what I've seen so far. I'm Mat by the way, I've been developing games since I was a very young (nearly 30 years ago ), professionaly for 20 years. I've dabbled in web development numerous times in the past, mainly with PHP / MySQL, but over the last few years I've got into ASP.net, MSSQL and Silverlight; they make a great trio. I've developed a social networking / bookmarking, web design web desktop platform as my first large scale project, which is the reason I'm here. The users desktops use Silverlight but I want to add the option of displaying them as an HTML page; mainly so that users can optimise them for search engines and what not, so I have a few CSS issues that I need help with. Im off now to go find the section of the forums where I can get CSS help Mat