Authentication & Authorization in ASP.Net
This is a new
security concept provided with asp.net.When client request comes to the web
server, then web server will attach one user account for the anonymous user,
based on which resources will be accessible. This is called as impersonation.
By default IUSR_MACHINENAME is the account attached to the anonymous
user.
When you want to implement current security for the web...
The main purpose of JUST-DOTNET.com is to help student and professionals in improving their industry oriented skills in Microsoft technologies like C#.Net, ASP.Net,VB.Net and SQL Server database. We also provide interview questions on the above technologies.
Most Viewed
Most Viewed
Sunday, 22 July 2012
Saturday, 21 July 2012
Caching in ASP.Net
Caching in ASP.Net
When you store most frequently used data on to the temporary storage
and providing to different clients request, then it is called as caching.
The main advantage of caching is to
improve the performance of the web server by reducing the processing time.
When you are expecting more no. of
requests to a web page within a particular time interval, also the web page is
having database interaction...
Labels:
ASP.Net
Friday, 20 July 2012
Technical Support Interview Questions and Answers
Desktop & Technical Support Interview Questions and Answ...
Tuesday, 17 July 2012
ASP.Net Page Execution
ASP.Net Page Execution
·
Asp.net
webpage is a class inherited from page class….
·
It
will be compiled into dll file.
·
An
object of -----.aspx class will be created, this will produce output to client
browser.
·
The
object will be destroying after providing output to client browser. The dll
file will be maintained by server.
·
When
the...
Labels:
ASP.Net
Sunday, 15 July 2012
.Net Fundamentals & Architecture
.NET fundamentals.NET is a platform to create distributed applications The Core Purpose of .NET is to connect different devices,systems,information and people..Net takes the best of XML to leverage the speed...
Labels:
C#.Net
Conditional and Obsolete keyword in C#.Net
Conditional and Obsolete keyword in C#.Net
The attribute Obsolete is used to mark types and members of types that should no longer be used.
The Conditional attribute is an alias for ConditionalAttribute, and can be applied to a method or an attribute class
Demonstrate Conditional and Obsolete keyword in C#.Net
#define DEBUG
using System;
using System.Diagnostics;
class Class1
{ ...
Labels:
C#.Net
Example on Delegate, Multicast delegate, Events in C#.Net
Demonstrates delegate in C#.Net
using System;
class Class1
{ public delegate int
Calc(int a,int b);
static int Multi(int val1,int val2)
{return
val1*val2;}
...
Labels:
C#.Net
C#.Net Remoting application
Steps for C#.Net Remoting
application :
Create service first
Create server object by
ref. service
create client code.
Create Service first – new project à class library à
Create a folder : c:\remotingdemo and store class library ,
client and server in this folder.
New Project à Class Library à
SimpleRemotingLibrary
Location : c:\>remotingDemo
using System;
using System.Collections.Generic;
using...
Labels:
C#.Net
Event Bubbling in .Net
Event Bubbling in C#.Net
the repeater can do more than just displaying data. it can contain some other controls in the itemtemplate. all these controls are called child controls to the parent control the repeater (or anyother container) when the child raises an event the parent can handle that event which is called eventbubbling.
datalist,datagrid also support event bubbling.
this is a better approach because its difficult...
Labels:
C#.Net
Delegates in C#.Net
Delegates in C#.Net
A delegate is a typesafe function pointer
It points to the methods(or functions ) which match to its signature
A delegate is typesafe becoz it will accept the functions with same datatypes as of its own arguments
if the parametres does not match it throws an error
Advantages:
1. It can point any method that matches..so we can have muticast delegates
2.which method is invoked is...
Labels:
C#.Net
Subscribe to:
Posts (Atom)