I have a big problem with my ASP using Access database. I have coded some ASP pages and it works succesfully at my home and then I bring it to my office and it doesn't work. I am using IIS both at home and office.
Error message :
Error Type:
Microsoft JET Database Engine (0x80040E09)
Cannot...
I want to ask something about my default script debugger (I use it to debug my ASP).
First, I have used Visual Interdev as my default sctipt debugger, then I install Microsoft Script Debugger (one that provide by Microsoft), and my default script debugger was changed to Microsoft Script...
Pointer is very useful...
You can do thing like this..
Without Pointer :
int a,b=7;
a=b; // Value in a=7 and in b=5;
b=5; // value in a=7 and in b=5;
if we want to make a is always replaced with value from b, we have to use pointer;
int *a,*b=7;
a=b; // Value *a=7,*b=7;
*b=5; // Value in...
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.