2.0: probally bug

  • Thread starter Thread starter RAM
  • Start date Start date
R

RAM

Hello,
I am learning .NET 2.0 and I have written simple ASP.NET application.
Unfortunatelly I cannot continue my work because of unhadled exception
generated not in my code, but between my methods. My friends suspect
that this is .NET bug. I have installed patch NETCFSetupv2.msi. Noone
on news could help me with the problem.
My question is: what can I do when I have bug in Microsoft product
like .NET. Maybe my question is very general I have little experience
with Microsoft.
/RAM/
 
RAM said:
I am learning .NET 2.0 and I have written simple ASP.NET application.
Unfortunatelly I cannot continue my work because of unhadled exception
generated not in my code, but between my methods. My friends suspect
that this is .NET bug. I have installed patch NETCFSetupv2.msi. Noone
on news could help me with the problem.
My question is: what can I do when I have bug in Microsoft product
like .NET.

You need to create a simple, small application that reproduces the bug.
Post it here, and people will check it to see if it is in fact a bug
with MS and not a bug in your code. After it's confirmed, you can post
it on http://connect.microsoft.com/VisualStudio/Feedback.

-- Barry
 
You need to create a simple, small application that reproduces the bug.
Post it here, and people will check it to see if it is in fact a bug
with MS and not a bug in your code.
I attach.
 
RAM said:
I attach.

The code you posted is a simple website. Note, I'm not an ASP.NET
expert. It doesn't exhibit an access violation, though. It throws an
exception, HttpUnhandledException. The inner exception is as follows:

"Message: Content controls are allowed only in content page that
references a master page.

Stack: at System.Web.UI.MasterPage.CreateMaster(TemplateControl owner,
HttpContext context, VirtualPath masterPageFile, IDictionary
contentTemplateCollection) at System.Web.UI.Page.get_Master() at
System.Web.UI.Page.ApplyMasterPage() at
System.Web.UI.Page.ProcessRequestMain(Boolean
includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)

Source: System.Web"

So, this code doesn't seem enough to show the access violation?

-- Barry
 
Back
Top