A simple steps to perform some action which asynchronous to the server using Jquery and Asp.Net.Here I am using Visual Studio 2008,Jquery and C# to perform this.Here I am just giving the code for doing that.I am just mentioning the way to take the data to a server page without using Handlers.This...
Do you know how to use Windows PowerShell to navigate the filesystem and manage files and folders? Or how to retrieve a web page? Windows PowerShell Cookbook (O'Reilly Media, $54.99 USD) gives you an introduction to the PowerShell language and scripting environment.
"This book focuses squarely...
Employee recognition is vital for performance-oriented companies that look for mobilizing all employees and stakeholders, prominently dealers and distributors, in the direction of clear business objectives ascertained by sales, profits, customer satisfaction, and productivity. Such performance...
In application like Messenger or Application that provides automatic update need to check that user is connected to internet or not before proceeding further.
so we need to check whether he is connected to internet or not we can check that with use of WIN32 API.
we can use Win32 API...
O'reilly has released a new book titled Programming Entity Framework authored by well known programmer and author Julia Lerman. The sub title of the book reads as Building Data Centric Apps with the ADO.NET Entity Framework 4
Get a thorough introduction to ADO.NET Entity Framework 4-Microsoft's...
There are some situations in which we need to code to create a short cut of our application especially when user loose the shortcuts created by the application after the setup has been run because some shortcuts also have defines special parameters that are for executable that runs program....
ASP.NET 3.5 is a web application that was created by Microsoft to allow web programmers to contrive web sites, web services, and web applications. ASP.NET is created upon the Common Language Runtime, which is more commonly known as CLR. This allows web programmers to write programming code...
In this mini-article, I will be talking about how you can use KeyBoard object.
To get all the Pressed Keys:
string var_text1;KeyboardState ns = Keyboard.GetState();foreach (Microsoft.Xna.Framework.Input.Keys a in ns.GetPressedKeys()){ var_text1 = a.ToString();Window.Title += var_text1;}
Just like...
In this mini-article, I will show you how you can make use most of Mouse object.
How to make Mouse Visible?
If you want to see default mouse,just add these codes anywhere on your code:
this.IsMouseVisible = true;
How to make a custom Cursor?
The trick is to add a texture that look like a...
There are some situations in which we need to code to create a short cut of our application especially when user loose the shortcuts created by the application after the setup has been run because some shortcuts also have defines special parameters that are for executable that runs program....