As a teacher, you can post or publish objective type questions via Question Sets on NiceOneCode. It's easy, private and free. It's kind of online test or quiz on given number of questions within a time frame. Once you post or publish a online test, you can track the number of students who responded with number of attempted questions and more.
Views:
3864
Comments: 1 Like: 6 Posted On: 07-Jun-2021 05:59 |
Want to publish your technical passions, your technical ways, create a unique and beautiful blog on NiceOneCode. It’s easy and free. Your blogs get included in article searches, search engine indexing, discussions and all features of regular articles.
Views:
1779
Comments: 1 Like: 1 Posted On: 07-Jun-2021 00:44 |
NiceOneCode Provides live discussion, to post a new live discussion or participate in a discussion, first you'll need to login (https://www.niceonecode.com/Login) to NiceOneCode, then go to Discussion menu select Live Discussion.
Views:
2538
Comments: 0 Like: 1 Posted On: 08-Oct-2018 06:41 |
To improve your chances of getting an answer, here are few tips and guidelines. Before posting question search and research, keep your findings. Write a title that encapsulates the specific problem
Views:
4475
Comments: 3 Like: 5 Posted On: 07-Jul-2018 21:45 |
To prevent Cross-Site Request Forgery (CSRF) Attacks we use ASP.NET MVC’s AntiForgeryToken. It generates a hidden form field (anti-forgery token) that is validated when the form is submitted. It is work fine with normal form submittion but It is not work with $http post with angular or $.post with jquery. In this we will try to validate AntiForgeryToken with $http (angularjs) by creating custom validator.
Views:
5583
Comments: 3 Like: 1 Posted On: 02-Jan-2017 03:04 |
As a developer some time we need to create sub-domains with IIS Express in local machine for testing. This article helpful for configuring such environment. In order to test it on a development machine, a couple of small additions needs to be done to allow subdomains with localhost (e.g. tenant1.localhost) together with IIS Express.
Views:
7423
Comments: 1 Like: 1 Posted On: 28-Sep-2016 23:12 |
Ajax Helpers make simple to create AJAX enabled elements like as Ajax enabled forms and links. Ajax Helpers are extension methods of AjaxHelper class. In this article we will see how these ajax helper works specially following Ajax.BeginForm(), Ajax.ActionLink().
Views:
7634
Comments: 3 Like: 1 Posted On: 20-Jun-2016 07:40 |
Dynamically generated HTML pages can open security risks if inputs (any control that can user input) are not validated either on the way of showing data to end user or getting data from end user. Malicious script can be embedded within input that is submitted to Web pages and appear to browsers as originating from a trusted source. This problem is mention to as a cross-site scripting security issue. In this article we discus on how to prevent.
Views:
2206
Comments: 0 Like: 0 Posted On: 04-Jun-2016 23:53 |
"Object Reference not set to an instance of an Object" is a run time error message. It is a common error message that every C# programmer will be familiar with it. The main cause of this error message is performing some operation on null object. In Previous version we can prevent this error through if condition by checking null. But Now in .Net 6.0 we have Null-conditional Operators. In this article we try to learn how to use it.
Views:
2369
Comments: 0 Like: 0 Posted On: 15-May-2016 03:40 |
A regular expression is a concatenation of characters that forms a search pattern. This search pattern or regular expression can be used for text search and text replace operations. In this article we will see the RegExp object uses and different methods.
Views:
1995
Comments: 0 Like: 0 Posted On: 06-May-2016 09:13 |