Tim Maxey .NET Technology Blog & Resources
July 2010 Entries
STOP, WAIT! DO NOT call and waste your time on the phone with sprint, unless this doesn't work, lol!
I was on the phone with sprint and they wanted me to reset everything etc, etc when I ported my number over to my new Android EVO when I called and could not get Sprint TV to work, kept getting the Error 3000, you are not authorized to use this application...
I had to go to settings, then applications, manage application, then scroll down and find Sprint TV and "clear data" and if you can "clear cache" and anything else with clear on...
Here is the easiest way to hide or rather disable the asp.net button control, or any other control for that matter, take this:
<div id="dwait" style="display:none">please wait, creating account...</div>
<div id="dBut"><asp:Button ID="Button1" runat="server" Text="Submit" OnClientClick="HideMe();" /></div>
function HideMe() {
var dw = document.getElementById("dwait");
var db = document.getElementById("dBut");
db.style.display = "none";
dw.style.display ="block";
}
When the asp.net button is clicked, it just hides the div of the button, or imagebutton (if you want) and shows the "wait" div. In the wait div you could put/style it however, like with an animated waiting or whatever... Enjoy!
If you just need a program to compare to files, I found this one to be really easy and nice, check it out! http://www.prestosoft.com/edp_examdiff.asp