Posts

Showing posts with the label ASP.net

Google reCAPTCHA implementation - ASP.NET C#, ASP.NET Web API, Android

Image
Google reCAPTCHA implementation ASP.NET C# Steps to implement Google reCAPTCHA in your website using technologies such as ASP.NET C#, ASP.NET web API, HTML and javascript. First you need to use your google account to login to Google reCAPTCHA  to register a new site. Add a label of your choice in the label section and for web implementation select the reCAPTCHA V2 radio button. Next in the domain section you can add several domains, for testing purposes you can add localhost also followed by another domain in the next line. Accept the terms and conditions and click on the button register. After you click register, google will generate a site key and a secret key and  instructions how to integrate it on both client and server side. Create ASP.NET Web API Next step is to open Microsoft Visual Studio and create a new project by selecting File > New from the menu bar and then select Project.  Select ASP.NET Web Application(.NET Framework) in the popup windows,

Mauritius Hiker - ASP.NET MVC, ASP.NET web api, C#,

Image
Hiking as a sport is common in several countries, in Mauritius this trend has started to because popular due to the fact that organizer can post hiking events on social networks like Facebook, meetup and others. For some people hiking is not just a sport but a lifestyle as well. When an hiking event is organized people have the chance to meet new people, explore new landscape, boost their adrenaline rush and  at the end of the day add it as unforgettable memories The fact the we do not have a specific platform custom made for Mauritians hikers, I have developed a web based application that will help organizers to post hiking events, where individual can get in touch with organizers and perform other functionalities. Screen Shot User Friendly Application Simple user interface to make the user comfortable and at ease, with a beautiful and eye catching navigation menu with option like about us, contact us, drop down menu to group all functionalities such as login and regist

Student Information System - AngularJS , ASP.NET API, C#

Image
Web based application the student information system is a small application that allows user to register and login to view information about a particular student and can perform several actions like Login and register to the application View students  Add new student Delete a particular student Update user information Screen Shot Project architecture routing.js, config.js and app.js allow the application to route from one partial view to another and config.js is used to save all the endpoint needed to access the API.   For separation of concerns, in the solution panel separate partial views, controller and services in different directories and reference it in index.html to enable angular to load all the files required Login process login.html LoginController.js Using $resource from AngularJS to make an API call and response  with a user details model UserViewModel and UserDetailsViewModel Using Unity for repository p