Web Forms :: How To Use Voice In Captcha
May 7, 2015How to set voice in Captcha validation
View 1 RepliesHow to set voice in Captcha validation
View 1 Repliesin short how to convert text into voice in asp.net? when i enter a text in textbox like this "my name is ram" it specch me my name is ram in voice.
View 2 RepliesHow to send voice sms from internet to mobile in asp.net using c# language using your own website.
View 1 Repliesfind a voice recorder software to be used in my asp.net website in windows 2003 server. The recorder software must be installed only on the server and not on the client.
View 1 RepliesI'm trying to develop a new application for multiple users. the main idea is that one user talks and the entire users (who logged in ) could hear him (1 way).
How this can be made? how can i transfer voice from one client to multiple clients in live?
Note that my clients are mobile users (Android, IOS and Windows phone) and the server is .NET.
How can I record voice usinf c# or vb.net (web aplication)? Is there any API that can work with all major platforms like Windows and apple?
View 2 Replieswe have to develop a enterprize application in asp.net c# and i have to getting a module of voice recording but i dont have any solution about voice recording in asp.net c# for webapplication.
View 2 Repliesam developing my project in asp.net 2.0 and c# and Now I am sending Text sms using Third party API.Now I want to send voice sms to mobiles.Do I need to develop it as mobile application or I need to purchase 3rd party API. some reference links for this process.
View 1 Replieshow to implement an Asp.Net application which records voice using mic.
View 3 RepliesI want to know the requiremets to develop Video and voice chat using C#.
View 2 RepliesI want to create a text, voice and video chat facility in our website like gmail/gtalk (video chat quality like skype)? how to find refernce/ project source code or any useful links to create chat application also to send/share any file to him. we can be able to send text and voice message when user is offline.
View 2 RepliesI need to make a non-voice chat support tool for a client in ASP.NET 3.5 framework.Can anyone tell me how can i make it using ajax control toolkit??
View 4 RepliesIn my C# website i want to add some speech which should be in UK English British Male Voice, how can i do that, and from where i may get that voice. Is there any way to do that?
View 1 Repliesi want to add captcha in my website.
View 1 RepliesMy question to all. I have a feedback form php form. Here its code.
[Code]....
I wish to insert in this form CAPTCHA. There is for somebody have a code CAPTCHA which well works? And how to me it to insert?
The captcha is working fine..but when we reload the page and click the verify button without entering enything..it's throwing error. Also it's throwing the error when we enter the code wrong 2 times..It's throwing the error as
Object reference not set to an instance of an object.
Exception Details: System.NullReferenceException: Object reference not set to an instance of an object.
Line 15:protected void btnVerify_Click(object sender, EventArgs e)
Line 15: {
Line 16: Captcha1.ValidateCaptcha(txtCaptcha.Text.Trim());
Line 17:
Line 18: if (Captcha1.UserValidated)
i had created a captcha coz by reffering a blog
http://nanddeepnachan.blogspot.com/2008/06/captcha-for-sharepoint-blog.html. its successfully can run after i deploy it.
I created a feedbackForm in aspx, then add the captcha web part. the captcha appeared in feedbackForm, but the problem is the data tat i added in feedbackForm cant insert in sharepoint list...
.aspx
[Code]....
.aspx.cs
[Code]....
I have implemented captcha in my Register.aspx page. I am verifying captcha at server side. here is the code which is working fine.
protected void CreateUserWizard1_CreatedUser(object sender, EventArgs e)
{
bool IsCaptcha;
IsCaptcha = validateCaptcha();
if (IsCaptcha == true)
StringBuilder bodyMsg = new StringBuilder();
TextBox textBoxUserName = (TextBox)CreateUserWizard1.CreateUserStep.ContentTemplateContainer.FindControl("UserName");
[code]...
I want to have the captcha image validation where users need to enter the text shown in image.
View 1 Repliesi had created a aspx page..Feedback and i had created the captcha coding... both i created in different folder...i wanna link the Feedback form with the captcha... -wen i want send the feedback, i have to write the captcha...after tat only can send.. how to link the form n captcha??
View 4 RepliesI would like to do the validation work using javascript or jquery in onclientclick and then show blockUI, next page using server click. But, I have a captcha validation in server click and I don't know how to validate the captcha in jquery or javascript.
protected void btnRegister_Click(object sender, EventArgs e) {
lblMessage.Text = ""; if (Page.IsValid) { if (txtUserName.Text == "") {
lblMessage.Text = "نام کاربری را وارد نمائید";
txtUserName.Focus(); return;
} if (!BLL.IsStrictPassword(txtPassword.Text)) {
lblMessage.Text = "طول کلمه عبور حداقل باید 5 کاراکتر باشد";
txtPassword.Focus(); return; } if (ddlYear.Text == "<سال>"
|| ddlMonth.Text == "<ماه>" || ddlDay.Text == "<روز>") {
lblMessage.Text = "لطفا تاریخ تولدتان را وارد نمائید";
return; } if (!chk_Low.Checked) {
lblMessage.Text = "برای عضویت می بایست قوانین سایت را بپذیرید"; return; } if (txtSecurityCode.Text == String.Empty) {
.Text = "کد امنیتی را وارد نکرده اید";
txtSecurityCode.Focus(); return; } secCode.ValidateCaptcha(txtSecurityCode.Text);
if (!secCode.UserValidated) {
lblMessage.Text = "کد امنیتی نادرست وارد شده است";
return; } try { //some code } }
I WANT to make a signup with the help of Detailview....I also want to add a captcha control in detail view to stop spamming...
View 4 Replieshow you have implemented mathematics type captcha in comments sections in URL...I like to implement this type of captcha security, its more clean and user friendly.
View 1 Repliesif user attempts to sign in, but they get the sign in wrong twice (say within a 5 minute period), then automatically show the Captcha and require them to enter Captch correctly before processing their next (third) sign in attempt.
View 2 RepliesI am getting exception on server when saving chapcha image in forder
A generic error occurred in GDI+. But is is working fine in local server without any error.
my codes .
using (Bitmap bitmap = new Bitmap(106, 35))
{
string imgCaptchaToSave = string.Empty;
string captchaText = Guid.NewGuid().ToString().Substring(0, 6);
[Code].....