1
Answer

Existing code of ASP.net and windows forms and database to a projec


How do i import an existing ASP.net and windows forms with sql database project to VIsual studio 2008 applcation?
Or
when i open this project from the file it displays the following error
Error 14 It is an error to use a section registered as allowDefinition='MachineToApplication' beyond application level.  This error can be caused by a virtual directory not being configured as an application in IIS. C:\Users\Tegene Best\Documents\Visual Studio 2008\Projects\MOE student placement system full after faculty sym. to addisu\web application\MOEISPSwebapp\web.config 34 
Answers (1)
0
Kirtan Patel

Kirtan Patel

NA 35k 2.8m 15y
Hi Friend ,

Here is Code Sample how you will handle Error

dont forget to mark "Do you like answer" please :) it will give me some credits :)

class Class1

    {

 

 

        public void P1()

        {

            try

            {

                P2();

                P3();

            }

            catch(Exception ex)

            {

               MessageBox.Show(ex.Message.ToString());

            }

        }

 

        public void P2()

        {

 

 

        }

 

        public void P3()

        {

 

        }

    }

Accepted
0
petre ricardo

petre ricardo

NA 219 0 15y

hi,
I want ot take master billa's answer further to clear out few issues:
1.
In the article the person creates a method called IsCritical() to check the throwed exception type. Instead of creating a new method called "IsCritical()" cant we write the super type exception (therefore from the BLL) it throws the super type exception that we can drill down to find out the inner type in the Controller or in the VIew of MVC?
2.
When the person uses a sperepate method IsCritical() to check the inner type of the exception, the class consist of so many error handling methods (in my case) .... becuase i already have two methods that throws exceptions and one method that decides what exception to throw and now adding a another to check the inner type makes the class lengthy, is this a good practise?
cheers
 
0
Roei Bar

Roei Bar

NA 7.8k 0 15y
well my friend, there are many ways to handle exceptions.

my way was always to handle exceptions in their scope. meaning that you have a try catch on the block you handle, and never throw the exception up to the higher level unless its a basic error that is a must be handled on application scope since without that  information you cant continue to next steps
0
Master  Billa

Master Billa

NA 2.7k 0 15y
Hi


I think there is no issues, you can throw in base method and catch in top level and make as user friendly message  and then display to user.

http://www.codeproject.com/KB/cs/csmverrorhandling.aspx

thank you