Holy Idiot....
-
:confused: I really need to buy a book or get a tutor :confused: .... making the transition for C ++ to this .NET Stuff......... I made a change to a default.aspx form which has a default.aspx.vb code file. I "built the file", and copied it over to my web site, and i get the following error: The file '/mytestwebsite/Default.aspx.vb' does not exist. i'm getting the jist that it's not THIS simple... any help appreicated. Rajesh
-
:confused: I really need to buy a book or get a tutor :confused: .... making the transition for C ++ to this .NET Stuff......... I made a change to a default.aspx form which has a default.aspx.vb code file. I "built the file", and copied it over to my web site, and i get the following error: The file '/mytestwebsite/Default.aspx.vb' does not exist. i'm getting the jist that it's not THIS simple... any help appreicated. Rajesh
You have uploaded just the default.aspx page to your website. What's new in ASP.NET is the so called codebehind page. In ASP classic you had to write your code in the same page that had the html tags. In ASP.NET the codebehind was introduced, to separate code from design. So the default.aspx page contains only the HTML tags. Your logic is in default.aspx.vb. You have to upload this file as well to your website. regards, Mircea Many people spend their life going to sleep when they’re not sleepy and waking up while they still are.