I was recently given a 2003 Server machine as a development box with the agreement that the Firewall will stay up. The problem though is that the box is unpingable on the network with the Firewall up. Not being a server administrator, I'm looking for the simplest way to allow users to access a...
You should be able to do this by referencing the PageCount property. I have a grid named dg1. I added a couple of buttons and wired them up to handle the paging. Works fine:
private void Button1_Click(object sender, System.EventArgs e)
{
// if the current page + 1 will be less than the...
Not for everyone but worth a look:
http://www.asp101.com/articles/jayram/sharestate/default.asp
http://www.dotnetjunkies.com/WebLog/whoiskb/archive/2004/04/07/10953.aspx
http://support.microsoft.com/default.aspx?scid=kb;en-us;307467
Vince
Boxing transforms a value type (allocated on the stack) to a reference type (allocated on the heap). Unboxing is the reverse.
{
int i = 100;
object o = i; //Boxing
int x = (int)o; //Unboxing
}
Vince
If you want to learn how to do this go here http://www.asp.net/downloads/default.aspx?tabindex=5 and download one of the starter kits (issue or time tracker are good examples) in VB.NET. Focus on the Global.asax, Security.vb and CustomPrincipal.vb files. Once you have a handle on the basics you...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.