Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. General Programming
  3. C#
  4. how to get solution files from the dll

how to get solution files from the dll

Scheduled Pinned Locked Moved C#
helptutorial
10 Posts 2 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • U Offline
    U Offline
    User 9021337
    wrote on last edited by
    #1

    i decompiled the dll files to get my backend files but still i didnt hav ethe solution files.i m not able to send mails as it says .....dll missing n all suggest to solve the problem.

    L 2 Replies Last reply
    0
    • U User 9021337

      i decompiled the dll files to get my backend files but still i didnt hav ethe solution files.i m not able to send mails as it says .....dll missing n all suggest to solve the problem.

      L Offline
      L Offline
      Lost User
      wrote on last edited by
      #2

      Create a blank solution, drop the codez in there and compile. What dll is it whining about? Can you post the exact message?

      Bastard Programmer from Hell :suss: if you can't read my code, try converting it here[^]

      U 1 Reply Last reply
      0
      • U User 9021337

        i decompiled the dll files to get my backend files but still i didnt hav ethe solution files.i m not able to send mails as it says .....dll missing n all suggest to solve the problem.

        L Offline
        L Offline
        Lost User
        wrote on last edited by
        #3

        It is not a simple matter to decompile a DLL into its source code. Also, the problem you describe is somewhat unclear: please provide exact details of what your code is doing and the text of any error messages you see.

        One of these days I'm going to think of a really clever signature.

        1 Reply Last reply
        0
        • L Lost User

          Create a blank solution, drop the codez in there and compile. What dll is it whining about? Can you post the exact message?

          Bastard Programmer from Hell :suss: if you can't read my code, try converting it here[^]

          U Offline
          U Offline
          User 9021337
          wrote on last edited by
          #4

          i created new projects the pasted the code from other files its stills says dll is missing,

          L 1 Reply Last reply
          0
          • U User 9021337

            i created new projects the pasted the code from other files its stills says dll is missing,

            L Offline
            L Offline
            Lost User
            wrote on last edited by
            #5

            It'll say more than that, please copy/paste the message here. It's either a missing reference (are you sure you are decompiling "your own code"?), or something else. Prolly the first one. --edit I see you opened a new question. System.Web.UI.WebControls[^]

            Bastard Programmer from Hell :suss: if you can't read my code, try converting it here[^]

            U 1 Reply Last reply
            0
            • L Lost User

              It'll say more than that, please copy/paste the message here. It's either a missing reference (are you sure you are decompiling "your own code"?), or something else. Prolly the first one. --edit I see you opened a new question. System.Web.UI.WebControls[^]

              Bastard Programmer from Hell :suss: if you can't read my code, try converting it here[^]

              U Offline
              U Offline
              User 9021337
              wrote on last edited by
              #6

              using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; public class brain : Page, IRequiresSessionState { protected void Page_Load(object sender, EventArgs e) { } protected HttpApplication ApplicationInstance { get { return this.Context.ApplicationInstance; } } protected DefaultProfile Profile { get { return (DefaultProfile)this.Context.Profile; } } } error:Error 1 The type or namespace name 'IRequiresSessionState' could not be found (are you missing a using directive or an assembly reference?)

              L 2 Replies Last reply
              0
              • U User 9021337

                using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; public class brain : Page, IRequiresSessionState { protected void Page_Load(object sender, EventArgs e) { } protected HttpApplication ApplicationInstance { get { return this.Context.ApplicationInstance; } } protected DefaultProfile Profile { get { return (DefaultProfile)this.Context.Profile; } } } error:Error 1 The type or namespace name 'IRequiresSessionState' could not be found (are you missing a using directive or an assembly reference?)

                L Offline
                L Offline
                Lost User
                wrote on last edited by
                #7

                Same as the answer to your message above.

                One of these days I'm going to think of a really clever signature.

                1 Reply Last reply
                0
                • U User 9021337

                  using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; public class brain : Page, IRequiresSessionState { protected void Page_Load(object sender, EventArgs e) { } protected HttpApplication ApplicationInstance { get { return this.Context.ApplicationInstance; } } protected DefaultProfile Profile { get { return (DefaultProfile)this.Context.Profile; } } } error:Error 1 The type or namespace name 'IRequiresSessionState' could not be found (are you missing a using directive or an assembly reference?)

                  L Offline
                  L Offline
                  Lost User
                  wrote on last edited by
                  #8

                  System.Web.SessionState.IRequiresSessionState[^] Namespace: System.Web.SessionState Assembly: System.Web (in System.Web.dll)

                  Bastard Programmer from Hell :suss: if you can't read my code, try converting it here[^]

                  U 1 Reply Last reply
                  0
                  • L Lost User

                    System.Web.SessionState.IRequiresSessionState[^] Namespace: System.Web.SessionState Assembly: System.Web (in System.Web.dll)

                    Bastard Programmer from Hell :suss: if you can't read my code, try converting it here[^]

                    U Offline
                    U Offline
                    User 9021337
                    wrote on last edited by
                    #9

                    System.Web.SessionState.IRequiresSessionState[^] when i added above line shows error cannot use namespace cannot directly contains members

                    L 1 Reply Last reply
                    0
                    • U User 9021337

                      System.Web.SessionState.IRequiresSessionState[^] when i added above line shows error cannot use namespace cannot directly contains members

                      L Offline
                      L Offline
                      Lost User
                      wrote on last edited by
                      #10

                      Don't include the interface-name when importing.

                      Bastard Programmer from Hell :suss: if you can't read my code, try converting it here[^]

                      1 Reply Last reply
                      0
                      Reply
                      • Reply as topic
                      Log in to reply
                      • Oldest to Newest
                      • Newest to Oldest
                      • Most Votes


                      • Login

                      • Don't have an account? Register

                      • Login or register to search.
                      • First post
                        Last post
                      0
                      • Categories
                      • Recent
                      • Tags
                      • Popular
                      • World
                      • Users
                      • Groups