I've updated the Clearscreen.SharpHIP control to solve most of the reported issues. The new features and fixes for this release are:
Hope that this new release helps to solve most of the actual issues, but if you find any bug or have any improvement that wasn't contained within this version, contact me and I'll try my best to solve it.
Feedback
# Clearscreen CAPTCHA Control now supports CS 1.0!
4/4/2005 8:52 PM |
Wow, that didn't take long. Miguel Jiménez has updated his CAPTCHA control to version 1.4 and it...
# Clearscreen SharpHIP HIP-CAPTCHA Control for ASP.NET Update - Version 1.3 Released!
4/5/2005 3:02 AM |
# CAPTCHA Back on Digital Thoughts
4/6/2005 5:32 AM |
When I migrated to Community Server I couldn't keep using Miguel's CAPTCHA control any more because...
# re: Clearscreen CAPTCHA Control v1.4 Released with Community Server 1.0 support [UPDATED]
4/8/2005 2:04 AM |
I love this control! I'm still having trouble with the updated version however. Seems to work fine when I go directly to my .95 blog post, but when I click the feedback link, the image box shows up as a broken image. Is the zip in this blog entry correct?
# An exhaustive list of Community Server resources
4/8/2005 1:10 AM |
# An exhaustive list of Community Server resources
4/8/2005 1:14 AM |
# re: Clearscreen CAPTCHA Control v1.4 Released with Community Server 1.0 support [UPDATED]
4/8/2005 4:32 PM |
Is it possible to make this image render without having javascript on? For some reason with the default example given firefox wont display the image and it says its protected. However I can see the image just fine on your site. I enabled javascript and then my application displayed the image in firefox. Where can I look up the reference or set for this?
# re: Clearscreen CAPTCHA Control v1.4
4/8/2005 4:37 PM |
Oh I also forgot, this doesn't put out valid HTML code. The control should be looked at so it outputs correctly.
4/11/2005 6:30 AM |
Mike,
Yeah, send them again. Maybe they're too big for my e-mail account? Try Messenger, that may work......
# re: Clearscreen CAPTCHA Control v1.4 Released with Community Server 1.0 support [UPDATED]
4/13/2005 5:58 PM |
I just grabbed the new version and in debugging, I see that it triggers the Page_Load event twice. Then, if I hide the control and try to capture an event on another button, it's ignored and triggers Page_Load twice again and IsPostBack is set to False. What's going on here?
# Updated to CAPTCHA Control ver 1.4
4/13/2005 10:22 AM |
# re: Clearscreen CAPTCHA Control v1.4 Released with Community Server 1.0 support [UPDATED]
4/13/2005 7:27 PM |
Michael, Do you have both the AutoEventWireUp set to true AND an explicit event handler set up in the code behind on your page? I've seen that behavior when both are true.
http://blog.devstone.com/aaron/archive/2004/11/11/340.aspx
# Comments are Up, But Hosed
4/20/2005 6:57 AM |
I've added the CAPTCHA control (http://blogs.clearscreen.com/migs/archive/2005/04/05/1270.aspx), but...it...
# re: Clearscreen CAPTCHA Control v1.4 Released with Community Server 1.0 support [UPDATED]
4/20/2005 4:00 PM |
Ack! sorry - I meant the 5/4/2005 version.
# An exhaustive list of Community Server resources
5/7/2005 6:58 AM |
[Editor: This list is a work-in-progress. Please feel free to drop me a note at deving@3sharp.com if...
# PingPoet Blogs Now Have CAPTCHA Comment Spam Blocking!
5/30/2005 5:50 PM |
# re: Clearscreen CAPTCHA Control v1.4 Released with Community Server 1.0 support [UPDATED]
6/7/2005 1:11 AM |
This is a destructive control. If you accidently type in the wrong code, you lose your comments and have to type them in again. Isn't there a way to turn the Comments textbox ViewState on?
# An exhaustive list of Community Server resources
6/13/2005 12:36 AM |
????:
http://blogs.3sharp.com/Blog/deving/articles/274.aspx
Documentation, Tutorials, and References...
# re: Clearscreen CAPTCHA Control v1.4 Released with Community Server 1.0 support [UPDATED]
6/15/2005 5:34 AM |
This is my third time trying to post this comment with no apparent result. I hope I'm not adding multiples!
I installed the DLL onto my .Text .95 site tonight. I copied the DLL, added the Register tag to the PostComment.ascx file, and the actual cc1:HIPControl element. I get no error, but it doesn't show up either. I can change other elements and see the change so I know that I've got the right files.
Any ideas?
-Arian
# Captcha Implemented into Feedback/Comments and Contact
6/16/2005 10:45 AM |
# re: Clearscreen CAPTCHA Control v1.4 Released with Community Server 1.0 support [UPDATED]
6/16/2005 7:47 PM |
This was quite easy to implement and I was also able to get around the missing image reference for Feedback by modifying the dotText sourcecode to remove #Feedback from the URL. This is found in the UI Controls, day.cs to be exact.
# Captcha Implemented into Feedback/Comments and Contact
6/16/2005 10:49 AM |
# An exhaustive list of Community Server resources
6/20/2005 6:27 AM |
Community Server resources
# re: Clearscreen CAPTCHA Control v1.4 Released with Community Server 1.0 support [UPDATED]
6/23/2005 3:33 AM |
Nice job Miguel! Couple of implementation items, all of which I'd be happy to help out with.
First is a strange bug that if a user clicks on the feedback link of a post (that goes right to #comments), the image does not show up. All other ways it does. Strange.
Second, it doesn't seem the persist user comments is working right if they enter a bad code. Is this by design?
Third is a request; can the code text be exposed in a way that a validation control can work with it? That way, if the user leaves it blank it won't blow away their message.
All tiddles aside, nice job and THANKS!
6/23/2005 11:34 PM |
?????????
6/23/2005 11:35 PM |
?????????
# re: Clearscreen CAPTCHA Control v1.4 Released with Community Server 1.0 support [UPDATED]
6/25/2005 12:35 PM |
I'm running CS 1.0 and I can't get anything past 1.1 of your control to work for me. For 1.2 onward the first time the page loads the image is always broken. If the page posts back the image appears.
6/26/2005 5:47 AM |
I discovered a way to fix the "broken image" problem without having to modify the CAPTCHA or dotText binaries. I created a script that retroactively removes any bookmark specifier from the url of the IMG tag.
Simply include this script after your HIPControl declaration:
<cc1:HIPControl id="HIPControl1" runat="server" />
<script defer>
var hcImage = document.getElementById('PostComment.ascx:HIPControl1hcimage');
var hIndex = hcImage.src.indexOf('#');
var qIndex = hcImage.src.indexOf('?');
if (hIndex > 0 && qIndex > hIndex)
hcImage.src = hcImage.src.substring(0, hIndex) + hcImage.src.substring(qIndex, hcImage.src.length);
</script>
Please replace 'PostComment.ascx:HIPControl1hcimage' with '{ContainingFileName}:{HIPControlID}hcimage'.
# Spam attacks our weblogs again!
6/25/2005 8:48 PM |
# re: Clearscreen CAPTCHA Control v1.4 Released with Community Server 1.0 support [UPDATED]
6/27/2005 11:45 AM |
Is the latest version compatible with CS 1.1?
6/27/2005 10:39 AM |
???????????(.Text)???????????????????????????????
????????????????????????????????????????????????
...
# Comment Spam Protection
6/30/2005 7:15 PM |
Just implemented some further spam protection to keep the evil doers at bay. I installed this great add-on that requires entering a validation code before providing feedback.
# re: スパム(コメント、トラックバック)対策
7/3/2005 2:12 AM |
re: ???(????????????)??
# Comment Spam Protection
7/16/2005 6:01 AM |
Just implemented some further spam protection to keep the evil doers at bay. I installed this great add-on that requires entering a validation code before providing feedback.
# Have I defeated the scourge of BlogSpam?
8/7/2005 5:03 AM |
# re: Clearscreen CAPTCHA Control v1.4 Released with Community Server 1.0 support [UPDATED]
8/24/2005 5:06 PM |
I like it, but I'm still getting spam somehow.
Also, if you type in the wrong code, you lose whatever you typed in. Any hope in fixing that?
# Clearscreen SharpHIP 1.4 source code release
10/5/2005 2:26 PM |
# MIGRATION DES BLOGS DE .TEXT A COMMUNITYSERVER 1.1
10/21/2005 3:42 AM |
Les blogs CodeS-SourceS viennent d'être migré sur CommunityServer. (Peut-être avez-vous remarqué un "léger"...
# MIGRATION DES BLOGS DE .TEXT A COMMUNITYSERVER 1.1
10/21/2005 3:44 AM |
Les blogs CodeS-SourceS viennent d'être migré sur CommunityServer. (Peut-être avez-vous remarqué un "léger"...
11/22/2005 8:49 PM |
Stopping comment spam using a CAPTCHA control really does help.
# Hopefully Im No Longer Violated
1/3/2006 4:33 PM |
# re: Clearscreen CAPTCHA Control v1.4 Released with Community Server 1.0 support [UPDATED]
3/12/2006 1:48 AM |
Does clearscree wrok with asp.net 2.0?
# Google Analytics Module
11/7/2006 6:52 AM |
# Google Analytics Module
11/7/2006 6:54 AM |
12/6/2006 12:13 PM |
Just like so many others before me, I have fallen victim to comment spam. Although I still have to figure
12/6/2006 12:58 PM |
Just like so many others before me, I have fallen victim to comment spam. Although I still have to figure
# Wont work with other controls
12/29/2006 9:22 PM |
I've found that this wont work with other ascx controls on the page. Works fine without them, but not with them. Ideas? john.mains@softwyre.com
# re: Clearscreen CAPTCHA Control v1.4 Released with Community Server 1.0 support [UPDATED]
3/2/2007 3:04 PM |
Hello all
# re: Clearscreen CAPTCHA Control v1.4 Released with Community Server 1.0 support [UPDATED]
3/30/2007 2:34 PM |
TEsting
# re: Clearscreen CAPTCHA Control v1.4 Released with Community Server 1.0 support [UPDATED]
4/11/2007 10:22 AM |
I think these blog is really useful for new comers and Excellent resource list. It?s a very interesting Blog and simple answer of many questions. Keep up the good work! Thanks it helps me a lot…
# re: Clearscreen CAPTCHA Control v1.4 Released with Community Server 1.0 support [UPDATED]
4/15/2007 10:02 PM |
I like it, but I'm still getting spam somehow.
Also, if you type in the wrong code, you lose whatever you typed in. Any hope in fixing that?
# re: Clearscreen CAPTCHA Control v1.4 Released with Community Server 1.0 support
4/16/2007 1:42 PM |
I still have recurrent problems with explore your site in Internet Explorer 4.0. please fix this problem
4/23/2007 7:49 PM |
I installed this great add-on that requires entering a validation code before providing feedback.
# re: Clearscreen CAPTCHA Control v1.4 Released with Community Server 1.0 support [UPDATED]
4/26/2007 11:16 AM |
I have'nt got any good idea to fight with the spammers at my own blog. It's very difficult... sometimes I think it's impossible.
# re: Clearscreen CAPTCHA Control v1.4 Released with Community Server 1.0 support
4/30/2007 10:42 AM |
Thanks for help,thats the answer of all my questions
# re: Clearscreen CAPTCHA Control v1.4 Released with Community Server 1.0 support
5/4/2007 9:58 AM |
I still have recurrent problems with explore your site in Internet Explorer 4.0. please fix this problem
# re: Clearscreen CAPTCHA Control v1.4 Released with Community Server 1.0 support
5/30/2007 9:58 AM |
this topic is wery important and interest for me.
thank you
# re: Clearscreen CAPTCHA Control v1.4 Released with Community Server 1.0 support
5/31/2007 2:17 PM |
amazing site.
I've finde a lot of interesting thems!
# re: Clearscreen CAPTCHA Control v1.4 Released with Community Server 1.0 support [UPDATED]
7/1/2007 4:34 PM |
I have'nt got any good idea to fight with the spammers at my own blog. It's very difficult... sometimes I think it's impossible.
# re: Clearscreen CAPTCHA Control v1.4 Released with Community Server 1.0 support [UPDATED]
10/22/2007 5:21 PM |
What is the latest version, v1.5?
# re: Clearscreen CAPTCHA Control v1.4 Released with Community Server 1.0 support [UPDATED]
10/22/2007 5:22 PM |
What is the latest version, v1.5?
# re: Clearscreen CAPTCHA Control v1.4 Released with Community Server 1.0 support [UPDATED]
10/22/2007 5:26 PM |
There's no 1.5. Version 1.4 is the latest version.
10/29/2007 11:20 AM |
???????????????????????,???????????????,??????
?????????????????????,??????,?????????????????? Community...
# re: Clearscreen CAPTCHA Control v1.4 Released with Community Server 1.0 support [UPDATED]
10/31/2007 2:29 PM |
I have'nt got any good idea to fight with the spammers at my own blog. It's very difficult... sometimes I think it's impossible.
# re: Clearscreen CAPTCHA Control v1.4 Released with Community Server 1.0 support [UPDATED]
10/31/2007 2:30 PM |
I have'nt got any good idea to fight with the spammers at my own blog. It's very difficult... sometimes I think it's impossible.
# re: Clearscreen CAPTCHA Control v1.4 Released with Community Server 1.0 support [UPDATED]
11/5/2007 2:55 PM |
..Interesting site. Found it on Google. Thanks for sharing all this great information. Keep up good work!..
# re: Clearscreen CAPTCHA Control v1.4 Released with Community Server 1.0 support [UPDATED]
11/18/2007 10:58 PM |
thxx
# re: Clearscreen CAPTCHA Control v1.4 Released with Community Server 1.0 support [UPDATED]
11/25/2007 5:55 PM |
thanks
# Clearscreen SharpHIP HIP-CAPTCHA Control for ASP.NET
11/29/2007 8:10 PM |
blogs.clearscreen.com/migs/archive/2005/02/01/905.aspx ;)
# re: Clearscreen CAPTCHA Control v1.4 Released with Community Server 1.0 support [UPDATED]
12/8/2007 1:56 PM |
We offer the largest collection of polyphonic ringtones, monophonic ringtones, mobile videos, color wallpapers, color screensavers, real sounds.
# re: Clearscreen CAPTCHA Control v1.4 Released with Community Server 1.0 support [UPDATED]
12/10/2007 9:24 AM |
thanks.
# re: Clearscreen CAPTCHA Control v1.4 Released with Community Server 1.0 support [UPDATED]
12/14/2007 1:43 AM |
thanks a lot.
# re: Clearscreen CAPTCHA Control v1.4 Released with Community Server 1.0 support [UPDATED]
12/14/2007 1:44 AM |
thanks
# re: Clearscreen CAPTCHA Control v1.4 Released with Community Server 1.0 support [UPDATED]
12/14/2007 1:50 AM |
thanks
# re: Clearscreen CAPTCHA Control v1.4 Released with Community Server 1.0 support [UPDATED]
12/14/2007 1:51 AM |
thanks
# re: Clearscreen CAPTCHA Control v1.4 Released with Community Server 1.0 support [UPDATED]
12/14/2007 2:44 AM |
thanks
# re: Clearscreen CAPTCHA Control v1.4 Released with Community Server 1.0 support [UPDATED]
12/15/2007 10:27 PM |
<a href="
http://www.rizecity.com/">Youtube, film indir, rize</a>
# re: Clearscreen CAPTCHA Control v1.4 Released with Community Server 1.0 support [UPDATED]
12/19/2007 9:10 PM |
If you are looking for the replica watch and information about it, you came to the right place.
# re: Clearscreen CAPTCHA Control v1.4 Released with Community Server 1.0 support [UPDATED]
12/26/2007 1:23 PM |
Nice blog.
# re: Clearscreen CAPTCHA Control v1.4 Released with Community Server 1.0 support [UPDATED]
1/16/2008 12:37 PM |
good idea to fight with the spammers at my own blog. It's very difficult... sometimes I think it's impossible.
# re: Clearscreen CAPTCHA Control v1.4 Released with Community Server 1.0 support [UPDATED]
2/3/2008 10:00 PM |
thanks for post, nice share...
# re: Clearscreen CAPTCHA Control v1.4 Released with Community Server 1.0 support [UPDATED]
2/6/2008 3:29 PM |
thanks,
# re: Clearscreen CAPTCHA Control v1.4 Released with Community Server 1.0 support [UPDATED]
2/13/2008 10:08 PM |
tskler
# re: Clearscreen CAPTCHA Control v1.4 Released with Community Server 1.0 support [UPDATED]
2/14/2008 1:45 AM |
thankss
# re: Clearscreen CAPTCHA Control v1.4 Released with Community Server 1.0 support [UPDATED]
2/14/2008 2:19 AM |
thanks
# re: Clearscreen CAPTCHA Control v1.4 Released with Community Server 1.0 support [UPDATED]
2/14/2008 2:32 AM |
THANK YOU
# re: Clearscreen CAPTCHA Control v1.4 Released with Community Server 1.0 support [UPDATED]
2/18/2008 11:38 AM |
thanks for post, i will follow your blog.
# re: Clearscreen CAPTCHA Control v1.4 Released with Community Server 1.0
2/25/2008 3:20 AM |
Thanks
# re: Clearscreen CAPTCHA Control v1.4 Released with Community Server 1.0 support [UPDATED]
3/7/2008 4:51 PM |
dfdsf sdfsadfsdaf sdfsadf sdafsd
# re: Clearscreen CAPTCHA Control v1.4 Released with Community Server 1.0 support [UPDATED]
3/7/2008 4:53 PM |
thank you
# re: Clearscreen CAPTCHA Control v1.4 Released with Community Server 1.0 support [UPDATED]
3/7/2008 4:55 PM |
stuff em up your jacksy
# re: Clearscreen CAPTCHA Control v1.4 Released with Community Server 1.0 support [UPDATED]
3/7/2008 4:57 PM |
more stuff for your rusty bullit hole
# re: Clearscreen CAPTCHA Control v1.4 Released with Community Server 1.0 support [UPDATED]
3/7/2008 4:58 PM |
find a place in the sun
# re: Clearscreen CAPTCHA Control v1.4 Released with Community Server 1.0 support [UPDATED]
3/12/2008 7:25 PM |
We are very impressed with your Clearscreen SharpHIP v1.4 captcha control. Would you let me know if this control is free for commercial use, and/or what type of licensing mode applies to the software?
# re: Clearscreen CAPTCHA Control v1.4 Released with Community Server 1.0 support
6/27/2008 11:06 PM |
We offer the largest collection of polyphonic ringtones, monophonic ringtones, mobile videos, color wallpapers, color screensavers, real sounds.
# re: Clearscreen CAPTCHA Control v1.4 Released with Community Server 1.0 support [UPDATED]
6/27/2008 11:07 PM |
What is the latest version, v1.5?
# re: Clearscreen CAPTCHA Control v1.4 Released with Community Server 1.0 support [UPDATED]
6/27/2008 11:08 PM |
Ack! sorry - I meant the 5/4/2005 version.
# re: Clearscreen CAPTCHA Control v1.4 Released with Community Server 1.0 support [UPDATED]
7/5/2008 2:58 AM |
it's great, how ever it is not xhtml compliant ???
# re: Clearscreen CAPTCHA Control v1.4 Released with Community Server 1.0 support [UPDATED]
7/7/2008 12:37 AM |
thanx man
# re: Clearscreen CAPTCHA Control v1.4 Released with Community Server 1.0 support [UPDATED]
7/16/2008 6:33 PM |
ayak üstü terlemeden...
# re: Clearscreen CAPTCHA Control v1.4 Released with Community Server 1.0 support [UPDATED]
7/23/2008 11:46 PM |
I'm not a big fan of CAPTCHA to be honest. I suppose no one really is; we don't exactly have the CAPTCHA because its nice, only because it can stop bots. So, if I'm going to have a CAPTCHA anywhere I would probably consider the RECAPTCHA idea – where the words typed in get stored in a database to help old books to be restored. Now, that's a really cool idea, and a totally commendable one. The guy who came up with it is really clever if you ask me.
# re: Clearscreen CAPTCHA Control v1.4 Released with Community Server 1.0 support [UPDATED]
8/4/2008 10:13 PM |
thanks
# re: Clearscreen CAPTCHA Control v1.4 Released with Community Server 1.0 support [UPDATED]
8/13/2008 10:50 AM |
Thanks for your blog and your articles , very usefull
# re: Clearscreen CAPTCHA Control v1.4 Released with Community Server 1.0 support [UPDATED]
8/13/2008 8:22 PM |
?
# re: Clearscreen CAPTCHA Control v1.4 Released with Community Server 1.0 support [UPDATED]
8/15/2008 7:37 AM |
good archive.thanks