how to get solution files from the dll
-
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.
-
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.
-
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.
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.
-
i created new projects the pasted the code from other files its stills says dll is missing,
-
i created new projects the pasted the code from other files its stills says dll is missing,
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[^]
-
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[^]
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?)
-
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?)
-
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?)
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[^]
-
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[^]
System.Web.SessionState.IRequiresSessionState[^] when i added above line shows error cannot use namespace cannot directly contains members
-
System.Web.SessionState.IRequiresSessionState[^] when i added above line shows error cannot use namespace cannot directly contains members