|
|
|
|
|
| | Total Hits: 302 | Today: 0 | Author: Rahul Mahajan. | Rating:  |
| |  This article provides a fully functional code for protecting websites from unwanted visitors. The code is developed in ASP (Active Server Pages) and VBScript (Visual Basic Scripting). The aim of developing code in ASP and VBScript is because both languages are cross-browser compliant and give a more secured way to protect website content. The code runs on both session cookies (hidden cookies) and textual cookies (not the JavaScript ones). The session cookie gives more security to web content and... |
| | Total Hits: 395 | Today: 0 | Author: Faisal Haroon. | Rating:  |
| |  Web-based Active Directory Login implements central sign-on system for web-based applications. It was developed to eliminate maintenance of user passwords in database, whether encrypted or not. A user running application from desktop enjoys liberty to access resources and/or services on the network which he has permission to do from Windows. On the other hand, web-based applications run in a security context entirely different from that of a desktop application. Same user while running applicati... |
| | Total Hits: 322 | Today: 0 | Author: Suman Kumar. | Rating:  |
| |  This article describes the basic steps to be followed for using Log4net in a web application. Log4net (http://logging.apache.org/log4net/) is an open source library that allows .NET applications to log statements to a variety of targets.... |
| | Total Hits: 303 | Today: 0 | Author: AzamSharp | Rating:  |
| |  In this article we will see different methods of authentication using new Login control which is introduced in ASP.NET 2.0. The first method will deal with MemberShip API and will show that how simple it is to authenticate using new API. Second method describes the custom authentication against the SQL SERVER 2000 database. And finally we will see custom authentication against an XML file.... |
| | Total Hits: 231 | Today: 0 | Author: Brian Desmond | Rating:  |
| |  Learn how to authenticate domain users via web forms using a simple Win32 API. Users will not be prompted with the standard and oftentimes confusing Windows Logon dialog.... |
| | Total Hits: 106 | Today: 0 | Author: admin under | Rating:  |
| |  This is a small enhancement made to the samples in these articles. I will show you how easy it is to add a "remember me on next login" feature so people is automatically logged in when visiting your site in the future. First just add a checkbox (I havn't renamed it in this sample, just calling it CheckBox1) in your login form.... |
| | Total Hits: 152 | Today: 0 | Author: Keith Dean. | Rating:  |
| |  Although we all appreciate the need for security, there are times when you would like to avoid the need to login to a web page to view a public or corporate Mailbox/Calendar/Tasklist via Collaborative Data Objects (CDO). This code allows a user to assume the identity of an existing user, and avoids the NT challenge response prompt. It could also be used anywhere that it is desirable to allow for access to a resource accessible via NT authentication. This approach in effect simulates the provisio... |
| | Total Hits: 127 | Today: 0 | Author: Scott Guthrie | Rating:  |
| |  In this article, Scott demonstrates how to log ASP.NET application shutdown events. Someone on a listserv recently asked whether there was a way to figure out why and when ASP.NET restarts application domains. Specifically, he was looking for the exact cause of what was triggering them on his application in a production shared hosted environment (was it a web.config file change, a global.asax change, an app_code directory change, a directory delete change, max-num-compilations reached quota,... |
| | Total Hits: 1419 | Today: 0 | | Rating:  |
| |  Some may not agree but there are some ways that JavaScript and ASP.NET just click. If done correctly these two languages work extremely well together. One way that I have found that works extremely well for me is a login verification system using some JavaScript on the client and ASP.NET as the connection into our database to verify the information entered. Below is the script and explanation of how these two languages can sometimes work well hand in hand.... |
| | Total Hits: 90 | Today: 0 | Author: Bilal Haidar | Rating:  |
| |  A common requirement of web applications is the need to obtain the user's username and password. In this article, Bilal Haidar builds a customizable Login server control that can be added easily to any ASP.NET Web Form.... |
| | Total Hits: 191 | Today: 0 | Author: Abdallah Fayez. | Rating:  |
| |  As an ASP.NET developer, I needed to create a secure login WebForm, but I also needed it to be easy to implement, not so complicated, and also accomplish the mission.... |
| | Total Hits: 96 | Today: 0 | Author: playing with bugs ). | Rating:  |
| |  On many website such as CP,Gmail,yahoo etc we see Remember me Next time check box. After clicking that checkbox,next time when we access this page only thing that we have to give is Username password will automatically added to the password textbox. It is not related with directly logged into the website. You have to provide user name then password will come from cookie that we have written when we first time logged in.... |
| | Total Hits: 94 | Today: 0 | Author: Marc Clifton. | Rating:  |
| |  This is a simple demonstration of managing user account information on a server using ASP.NET. I decided that this might be a good way to get my feet wet in the whole ASP.NET environment, and the trials that I went through to get this far, might be of interest (and amusement!) to everyone else.
I am very much indebted to the numerous people on CP, who have helped answer some of my very basic questions. You all know who you are, and I thank you very much for your help.... |
| | Total Hits: 88 | Today: 0 | Author: bernardoh. | Rating:  |
| |  I´m thrilled by how the Model-View-Presenter Pattern (MVP) is helping me on the "Get-Filters on Wizard, Show-Result" type of report I´m doing on work right now. So after grasping a little bit more of how MVP works, and believe me, it can get quite tricky, I decided to write about it. I´ll illustrate the MVP pattern through a really simple sample, but one that could be used in lots of applications: A login UI. I´ll build the UI in the following steps: -The Unit test for the UI (Yeah you rea... |
| | Total Hits: 49 | Today: 0 | Author: Christoph Wille | Rating:  |
| |  Under Windows 2000 (or NT) the Event Log is about the most important source of information for the administrator because all events that occurred are logged there - from success to catastrophical failure. And as it is so important, what would be more obvious than to make it accessible via the web? The Event Viewer should be familiar to nearly everyone (see picture). In this article I will demonstrate how the list of entries can be emulated very elegantly using ASP.NET and the .NET Framework S... |
| | Total Hits: 73 | Today: 0 | Author: Donny Mack | Rating:  |
| |  Error handling is a critical part of building enterprise level web applications, for that matter, it is a huge page of any application. In one of last weeks article we discussed using the Try...Catch...Finally statement to catch and respond to exceptions thrown during the page execution process. In this article I will be introducing a new way to catch Page-Level exceptions by introducing the HandleError Method. I will demonstrate what the firing order of the two are (try..catch..finally and Hand... |
| | Total Hits: 373 | Today: 0 | Author: Charles M. Carroll | Rating:  |
| |  Log4Net is a great logging library that is multi-platform (Java, PHP, C++, plSQL, etc). It has many conveniences but the ones that caught my attention are: * The ability to change the logging destination with a configuration change at runtime, and for multiple logging destinations. * The well behaved fact that errors in the logging library/configuration never bubble to the application. * The extensibility by design of Log4net.... |
| | Total Hits: 165 | Today: 0 | Author: Anand Narayanaswamy | Rating:  |
| |  In this final installment of the series, you will learn how to authenticate users using the credentials from a database. I will use the database named "Wintergreen," which we created in the first part of this series. Towards the end of this article, you will also learn how to apply Web Services for performing database operations. Typically, a site validates its users with their username and password. Some sites require you to feed in an e-mail address, which you gave at the time of registration.... |
| | Total Hits: 431 | Today: 0 | | Rating:  |
| |  How to configure your machines to work with Microsoft .NET Passport in a development environment; includes using Microsoft .NET Framework classes to perform .NET Passport single sign-in.... |
| | Total Hits: 4 | Today: 0 | Author: guru.sarkar | Rating:  |
| |  If you are developing using ASP.NET membership and login controls, you will be seeing the above image. This article will discuss how to prevent and/or cure this.... |
|
|
|
|
|
|
|
|
|
|
|
|
|