Submitted Questions

  • How do you create Custom Dictionary? What is the use of it?

    PeterVH

    • Aug 19th, 2011

    If you mean under Visual Studio 2008 and upwards, the custom dictionary is to have abbreviations or words or whatever recognized by the code analysis. Silly example, You have a Company Officer, which...

    dipayan samanta

    • Jul 17th, 2007

    Goto>control panel->system->advanced->user variables.goto the Path title and edit it. Add the path of C# compiler. then save and exit. it's same as SETPATH in JAVA. the you can create your dir anywhere in your HDD and run program from DOS prompt.

  • what is the difference between Response.Redirect and Server.Transfer

    neeraj deshwal

    • Dec 9th, 2011

    Response.redirect is used like get method method in which we can see all information or address where we will be go .
    Server.transfer is used like post method, In this one cannot see full address between pages. So, this is more secured.

    vikas shrivastava

    • Nov 22nd, 2011

    By response.redirect we can navigate to another page in same site as well as different site .but by server.transfer we can only navigate only the page that exist in same web site