
Search In
“Server.Transfer” vs “response.Redirect”
Server.Transfer
The sequence of transfer in Server.Transfer:
1)The transfer is done by the server.
2)Suppose there are two asp.net pages Webform1.aspx and Webform2.aspx. The navigation from Webform1 to Web
In C++ program the compiler converts every statement in machine language of one or more lines, during compiled time. Every line is provided with the unique address. So each function of the program is provided with the unique machine language address.
Multithreading is a meachanism where a one user can access more than one process or you can say that an operating system can perform more than one operations simultaneously.
In Android we have two types of thread that are Main thread and backg
What Is Workbench Concept In Software Testing ?
In the sequence of comprehension testing techniques, we must know the concept of workbench. Normally a workbench concept is a method of scheduling that how a particular action has to be executed. Workb
While making joins in SQL you can have parameters which are passed in your query for getting result
ALTER PROC [dbo].[uspGetNudgesDetails]
@AccessToken VARCHAR(50),
@BeaconID VARCHAR(50)=NULL,
@CompanyID BIGINT =0,
@TargetUserID BIGINT=0
AS
BEG
State transition testing is used where some aspect of the system can be described is called a ‘finite state machine’. The state transition from one to other is based on the state of machine and depending upon the what happened before the
AngularJS $apply comes into play when it invokes digest cycle to watch the scope model changes. Angular wraps the function call within the $scope.$apply. It means it executes a complete new life cycle. If the execution of the function is normal, the
If you want to handle exception at the controller level you will create a class for that inside the controller that will override the OnException method to log errors
@model System.Web.Mvc.HandleErrorInfo
@{
Layout = null;
}
<!DOCTYPE html>
Using HTML Geolocation
HTML Geolocation is used to identify the position of any object based on its geographical parameters passed.
You can use its functions to find the position of the object.
It will check whether geoloca
ViewBag in asp.net mvc
ViewBag is an object type which is a dynamic property of ControllerBase class.
public Object ViewBag { get; }
ViewBag provides communication between controller and view. ViewBag passes data from controll
