I've been working on this for a couple of hours and I cannot get the cursor to change to a waitcursor no matter what I've tried. I think what's even more bothersome to me is that most of the suggested fixes are not showing up as options in my intellisense.
For instance, if I start to type Application, that comes up, but when I put the . after it, UseWaitCursor is not one of the options. Neither is this.cursor. The only one I seem to have is Cursor.Current, and I've put it as the very first thing in my Page_Load,
and it does nothing :(
Any help would be greatly appreciated...I'm using asp.net /4.5/c#/VS 2012
using DMC.Behavior.WebServices;
using DMC.Classes;
using NPOI.OpenXml4Net.OPC;
using NPOI.SS.UserModel;
using NPOI.XSSF.UserModel;
using System;
using System.Collections.Generic;
using System.Data;
using System.Data.SqlClient;
using System.Drawing.Printing;
using System.IO;
using System.Reflection;
u ...
Go to the complete details ...