Hi tokarjoe, on a side note, I would expect this thread to be moved somewhere more appropriate at some point, so don't be alarmed if that happens.
If you have successfully uploaded a page, I would expect an error to start off with (I was expected a 400 though). Anyway, you will need to make a few changes to the
web.config file, as follows:
* comment out (or remove) the line
<authentication mode="Windows"/>. You must always perform this step to have any chance of it working here.
* look at the customErrors node just underneath the authentication section, and you will see it's commented out; leave that for now, and add a new line
<customErrors mode="Off" /> just underneath. This will now display any errors to you, which will assist in debugging.
If you don't mind, even though it doesn't yet work, can you provide a link to your test page?
I'm glad you're a VB.Net guy, it's my favourite language to use. I asked you about C#/VB.Net for a reason. As I said, VB.Net lags behind in the Mono world; while we use VB9 (VB2008), Mono currently requires you to use VB8 (VB2005). So, you have to bear this in mind. As a simple example, the following will not work here:
HTML
Code:
<asp:Button ID="Button1" runat="server" Text="Button" />
VB9
Code:
Protected Sub TestButtonClick(ByVal sender As Object, _
ByVal e As EventArgs)[B] Handles Button1.Click[/B]
Label1.Text = "You clicked the Button - well done!"
End Sub
As you can see, there is nothing wrong with the code, but asp.net/vb8 didn't allow the Handles clause (although VB8 by itself obviously does). So, the easiest answer is to revert back to the old method, as so:
HTML
Code:
<asp:Button ID="Button1" runat="server" [B]onclick="TestButtonClick[/B][B]"[/B] Text="Button" />
VB8 or VB9
Code:
Protected Sub TestButtonClick(ByVal sender As Object, ByVal e As EventArgs)
Label1.Text = "You clicked the Button - well done!"
End Sub
VB8 does not have Linq support either
... where as C#(ver 3) does and is supported in Mono (I love Linq!). So, just be aware of all those lovely new VB.Net features you can't use when porting your app to Mono (as you may know, VB10 is only a couple of months away, just to add to the headache).
OK, enough for now; post your testPage please. Apart from your issues at work, you should be very close to seeing your page work. Fingers crossed...