|
|
Resources |
|
Finding
Correct Content Managemet System
This
list covers the full lifecycle of a content management system, from initially
creating the content, through to delivering it to end users...
|
|
Workflow Managemet Systems
Workflow
management is a crucial component in organizing a variety of business processes
so that they benefit the business as a whole and increase profitability...
|
|
Using the Power of Content Management Systems
With
page editors that resemble a word processor program, adding content with a CMS
interface is simple and fun. Most CMS software also allows you to change the
location of your content pages and links easily, while the back end processes
takes care of updating the links throughout your site...
|
|
Content Management Systems (CMS): What They Are And Why We Love Them
In the
past, individuals who took interest in having and operating their own websites
were burdened with the task of learning HTML, DHTML, and other web-based
technologies such as JavaScript and CSS. The only alternative to this was,
unfortunately, to pocket the expenses and costs required to pay a web developer
to build and maintain it for them...
|
|
Outsourcing
Post
your project for outsourcing and get bids from qualified programmers,
designers, interpreters, copywriters.
|
Code Walkthroughs |
|
Datagrid
Formatting the Data
We are
able to format the content of the datagrid cell by one of two simple methods,
dependant upon whether the column is a bound column or whether it is a template
column. In our example we shall format the column to have to digits after the
decimal point , followed by a...
|
|
Datagrid
Highlight a Row With Click Through
It is
relatively easy to add alternating colours to the rows in your datagrid.
However, when we move the mouse over the rows we may want to highlight this
row, and possibly to add the option of a click through based on the row
selected...
|
|
Add
a Delete Button to a Datagrid
To add
a delete button to a datagrid follows a similar process to adding an edit
button. In the datagrid header...
|
|
Add
an Edit Button to a Datagrid
The
datagrid has a predefined editColumn for handling the editing of a datagrid.
Adding this simple column definition to a datagrid adds a powerful feature.
When a row is not in edit mode the column item shows the word...
|
|
Making
a Datagrid Row Editable
Two of
the most popular methods of editing a datagrid in asp.net are to either select
the row and take the user off to a different presentation of the data, or to
change the formatting of the row presented in the database with appropriate
edit text boxes, checkboxes and...
|
|
Adding
Tooltips to Datagrid Rows
Adding
tooltips to datagrid rows is easy, assuming that you have already created the
code for adding row highlighting. In this article I shall assume that you have
already read the article entitled Datagrid Highlight a Row With Click
Through...
|
|
Binding
a Datagrid to an Access Database
This
list covers the full lifecycle of a content management system, from initially
creating the content, through to delivering it to end users...
|
|
Adding
Data to a DropDownList
The aim
of this article is to answer the question 'How do I add items to a
DropDownList?' Initially as part of the declaration for the DropDownList we can
also define a number of items, much in the same way as in classic ASP...
|
|
Getting
Current Date Time
In
classic ASP we had now() which would return the current date and time. For
asp.net this no longer exists. So what should we use...
|
|
Test
if File Exists
Sometimes,
in order to reduce our chance of error, when working with the filesystem in
ASP.NET, we need to determine wether a file exists before performing an action
on it. The following short piece of code will enable us to test whether a file
exists...
|
|
Using
Javascript with ASP.NET Form Elements
Adding
simple pieces of Javascript to an Asp.net page can be acheived by adding to the
attributes of the particular imagebutton or linkbutton. if its normal ASP.Net
Button then you can...
|
|
Regular
Expressions
In the table below we list the characters used in .Net
regular expressions, together with their meaning, But first...
|
|
Authentication
in Asp.net
Forms
authentication in ASP.Net is far more easier and safe than Asp 3. It is
possible to place a web.config file in any directory of a web site.Therefore,
we are able to make most of a web site public, whilst providing authentication
on, say, one directory...
|
|
|
9.1 What is the difference between authentication and authorization?
|

 |
|
Authentication is the process of identifying and verifying who the client
accessing the server is.
For example, if you use
-
Windows authentication and are browsing an ASP.NET page from server --
ASP.NET/IIS would automatically use NTLM to authenticate you as
SYNCFUSION\user1 (for example).
-
Forms based authentication, then you would use an html based forms page to
enter username/password -- which would then check a database and authenticate
you against the username/password in the database.
Authorization is the process of determining whether an authenticated user has
access to run a particular page within an ASP.NET web application.
Specifically, as an application author decide to grant or deny the
authenticated user "SYNCFUSION\user1" access to the admin.aspx page. This could
be done either by explictly granting/denying rights based on the username -- or
use role based mappings to map authenticated users into roles (for example: an
administrator might map "SYNCFUSION\user1" into the "Power Users" role) and
then grant/deny access based on role names (allowing a degree of abstraction to
separate out your authorization policy).
|
9.2 How to implement authentication via web.config?
|

 |
|
Include the <authorization> element.
|
9.3 How to run a Web application using the permission of an authenticated user?
|

 |
|
Use the <identity> element in the web.config
|
<identity impersonate="true"/>
|
9.4 Which are the different ASP.NET authentication modes?
|

 |
|
ASP.NET supports the following Authentication Providers
-
Windows : Is used in conjunction with IIS authentication. Authentication is
performed by IIS in one of three ways: basic, digest, or Integrated Windows
Authentication. When IIS authentication is complete, ASP.NET uses the
authenticated identity to authorize access
-
Forms : The user provides credentials and submits the form.
-
Passport : Centralized authentication service provided by Microsoft that offers
a single logon and core profile services for member sites.
-
None : No Authentication provided. This is default Authentication mode
In the web.config file, you can specify this setting:
|
mode= " [ Windows | Forms | Passport
| None ] ">
|
9.5 How to determine the Windows User from a Web form Application?
|

 |
|
Use the System.Security.Principal namespace.
VB.NET
|
dim wp as WindowsPrincipal = new
WindowsPrincipal(WindowsIdentity.GetCurrent())
|
Response.Write(wp.Identity.Name)
|
WindowsPrincipal wp = new
WindowsPrincipal(WindowsIdentity.GetCurrent());
|
Response.Write(wp.Identity.Name);
|
9.6 After installing SP4 none of my ASP.NET pages developed using Framework 1.0
are showing the errors related to security?
|

 |
|
To resolve this issue, identify the user account that is used to run the
program, and then assign the "Impersonate a client after authentication" user
right to that user account. To do this, follow these steps:
-
Click Start, point to Programs, point to Administrative Tools, and then click
Local Security Policy.
-
Expand Local Policies, and then click User Rights Assignment.
-
In the right pane, double-click Impersonate a client after authentication.
-
In the Local Security Policy Setting dialog box, click Add.
-
In the Select Users or Group dialog box, click the user account that you want
to add, click Add, and then click OK.
-
Click OK.
For more details refer
Overview of the "Impersonate a Client After Authentication"....
|
|
|
|