Create a new Project in Asp.net named "storeObjInSession"
in Default.aspx.cs file within class put below code snippet..
//
properties that you want to store in session
public int EmpId {get; set;}
...
Thursday, 30 May 2013
Wednesday, 29 May 2013
View State in Asp.Net
What is view state?
View State is one of the most important and useful client side state management mechanism. It can store the page value at the time of post back (Sending and Receiving information from Server) of your page. ASP.NET pages provide the ViewState property as a built-in structure for...
Monday, 27 May 2013
Prevent User To Go Back Page After Logout
simply put this function in your Webpage . this will prevent user to go to back page after logout ..
protected void Page_Init(object
sender, EventArgs e)
{
Response.Cache.SetExpires(DateTime.UtcNow.AddMinutes(-1));
Response.Cache.SetCacheability(HttpCacheability.NoCache);
Response.Cache.SetNoStore();
}
...
Thursday, 23 May 2013
SQL Injection
SQL injection is an attack in which malicious code is inserted into strings that are later passed to an instance of SQL Server for parsing and execution. Any procedure that constructs SQL statements should be reviewed for injection vulnerabilities because SQL Server will execute all syntactically valid...
LINQ
LINQ is a technique for querying data from any Datasource. data source could be the collections of objects, database or XML files. We can easily retrieve data from any object that implements the IEnumerable<T> interface.
Advantages: as Linq Queries is integrated with .net c# language , it enables you to write code much faster then than if you were writing oldstyle queries. In some cases...
Wednesday, 22 May 2013
ADO.NET Entity Framework:: Insert Update and Delete
Every .NET developer sometime will start using ADO.NET Entity Framework.
And first question will be such as how to insert, update and delete records.
Performing basic Inser, Update and Delete operations via the Entity Framework is very straight forward.
first you need to create a Database Table -
Script-
Create Database StudentDetail
USE [StudentDetail]
GO
CREATE TABLE [dbo].[login](
[loginid] [varchar](20) NOT NULL,
[password] [varchar](20) NOT NULL,
[rights] [varchar](20) Null
)
after...
Tuesday, 21 May 2013
API and Web Service
Difference Between API and Web Service
An API is an Application Programming Interface. An example of an API would be ADO.NET or Google APIs . An API encapsulates functionality into a library for you to access. It contains the operations, properties, etc. necessary to perform your actions.
A web service is a middle tier operation that you write on your own or consume someone Else's. A web service...
Thursday, 16 May 2013
Maintaining Session in MVC
Sessions can be maintained in MVC by 3 ways tempdata ,viewdata and viewbag.
What is the difference between tempdata ,viewdata and viewbag?
Temp data: -Helps to maintain data when you move from one controller to other controller or from one action to other action. In other words when you redirect,“tempdata” helps to maintain data between those redirects. It internally uses session variables.
View...
Tuesday, 14 May 2013
How to find page load time: ASP.NET
One of the important factors that measures a website's performance is the page loading time. Therefore, it is very essential to keep an eye on how long it takes for web pages to load on the client browser. In ASP.NET, this can be achieved using the application class, that acts as an entry point for...
Subscribe to:
Posts (Atom)
Topics
ADFS
(1)
ADO .Net
(1)
Ajax
(1)
Angular
(47)
Angular Js
(15)
ASP .Net
(14)
Authentication
(4)
Azure
(3)
Breeze.js
(1)
C#
(55)
CD
(1)
CI
(2)
CloudComputing
(2)
Coding
(10)
CQRS
(1)
CSS
(2)
Design_Pattern
(7)
DevOps
(4)
DI
(3)
Dotnet
(10)
DotnetCore
(20)
Entity Framework
(5)
ExpressJS
(4)
Html
(4)
IIS
(1)
Javascript
(17)
Jquery
(8)
jwtToken
(4)
Lamda
(3)
Linq
(10)
microservice
(4)
Mongodb
(1)
MVC
(46)
NodeJS
(8)
React
(10)
SDLC
(1)
Sql Server
(32)
SSIS
(3)
SSO
(1)
TypeScript
(3)
UI
(1)
UnitTest
(2)
WCF
(14)
Web Api
(16)
Web Service
(1)
XMl
(1)
Pages
- Dotnet Core Interview Q/A
- React JS Interview Questions and Answers
- Angular Interview Q/A
- Node JS Interview Q/A
- Azure Interview Q/A
- .Net Interview Q/A
- WEB API Interview Q/A
- Javascript Interview Q/A (Part- 1)
- Javascript Interview Q/A (Part- 2)
- SQLServer Interview Questions
- SQL - Query Related Interview Q/A
- ASP .Net MVC Interview Q/A
- Angular Testing Interview Q/A
- Lead level Interview Q/A
- WCF Interview Q/A
- ExpressJS Interview Q/A
- MongoDB Interview Q/A
- C# Programs Output Q/A
- InterView Programming
- ASP .Net Interview Q/A
- Angularjs Interview Q/A
- SQL Server 2005/2008 Functions
- Entity Framework Interview Q/A
- JQuery Selectors / Methods
- Ado .Net InterView Q/A
- LINQ Operators and Lambda Expression
Dotnet Guru Archives
-
▼
2013
(47)
-
▼
May 2013
(10)
- Storing Class Object in Session in Asp.net
- View State in Asp.Net
- Prevent User To Go Back Page After Logout
- SQL Injection
- LINQ
- ADO.NET Entity Framework:: Insert Update and Delete
- API and Web Service
- Maintaining Session in MVC
- How to find page load time: ASP.NET
- Introduction to Change Data Capture (CDC) in SQL S...
-
▼
May 2013
(10)