Implement Text to Speech in ASP.NET By Mallikarjun A 15:41:00 Add Comment At this point I have created a new ASP.NET Empty Web Site. To begin: Right click the project in your solution explorer. Select Add ... Read More
CAPTCHA in C# By Mallikarjun A 14:59:00 Add Comment Create a new website in Visual Studio and add two files in it. Default.aspx GenerateCaptcha.aspx Add following namespaces and write code be... Read More
Get file size before upload using jquery By Mallikarjun A 15:12:00 Add Comment Get file size before upload using jquery Before uploading file on the server, to know the size of file is a good practice. By knowing file... Read More
find a string within a jQuery or javascript string By Mallikarjun A 15:10:00 Add Comment First Method //returns -1 if doesn't contains if (str.indexOf("Hello") >= 0) { //string contains Hello ... Read More