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...
Just an FYI...Troelsen's book has a third edition for 2005.
http://www.amazon.com/gp/product/1590594193/qid=1138489457/sr=8-1/ref=sr_8_xs_ap_i1_xgl14/104-7502297-5141563?n=507846&s=books&v=glance
Vince
We really need more info here. Are you trying to bring this project out of SourceSafe to your local box to administer? Is the Project/Solution write protected? Are there any third party controls in use that you are not referencing in your project? I've been through this one and the solution is...
If you can envision yourself 30 or 40 years from now as still working for this company and being the Lansa Guru and Lansa (whatever that is) will be the predominant technology of the time then go for it. Else, hang in there and get the MBA. You have no idea how many wacky doors will open up for...
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.