Forum: ASP.NET Aug 25th, 2005 |
| Replies: 5 Views: 2,255 the iis on a winxp cd is usually asp 1.0, current (up to date) asp.net is like 1.1 i believe so you need to check if they match up or not, just google iis upgrade 1.0 |
Forum: ASP.NET Aug 25th, 2005 |
| Replies: 5 Views: 2,255 make sure that iis has the same version of asp.net as yer vs does.
are you running it against a database? did you stick a config file in the same directory for debuggin? |
Forum: ASP.NET Aug 19th, 2005 |
| Replies: 3 Views: 3,371 wont winxp pro be able to do it too? (though not as nice?) |
Forum: C++ Aug 18th, 2005 |
| Replies: 4 Views: 5,693 since get and getline write to a char*, just use atoi, for example
#include <stdlib.h>
int main(void)
{
char *buf1 = "42";
char buf2[] = "69.00";
int i;
double d;
... |