Click here to Skip to main content
15,909,939 members
Home / Discussions / C#
   

C#

 
AnswerRe: IConfigurationSectionHandler Pin
J4amieC20-Jan-09 5:29
J4amieC20-Jan-09 5:29 
GeneralRe: IConfigurationSectionHandler Pin
Patrick Skelton20-Jan-09 5:59
Patrick Skelton20-Jan-09 5:59 
QuestionReading Data from XML String using XmlDocument [modified] Pin
jl60420-Jan-09 5:17
jl60420-Jan-09 5:17 
QuestionLost cs Files in ASP.NET Website.... Now I need to make additions. Pin
ortaparmak20-Jan-09 4:56
ortaparmak20-Jan-09 4:56 
AnswerRe: Lost cs Files in ASP.NET Website.... Now I need to make additions. Pin
ortaparmak20-Jan-09 5:00
ortaparmak20-Jan-09 5:00 
GeneralRe: Lost cs Files in ASP.NET Website.... Now I need to make additions. Pin
moon_stick20-Jan-09 5:08
moon_stick20-Jan-09 5:08 
GeneralRe: Lost cs Files in ASP.NET Website.... Now I need to make additions. Pin
ortaparmak20-Jan-09 5:21
ortaparmak20-Jan-09 5:21 
GeneralRe: Lost cs Files in ASP.NET Website.... Now I need to make additions. Pin
moon_stick20-Jan-09 5:28
moon_stick20-Jan-09 5:28 
You're effectively talking about making changes to a compiled piece of code which leaves you with two options:

1. Recreate the project as described above; edit, rebuild & deploy.

2. Disassemble the DLL using ildasm.exe (prob found in c:\program files\visual studio 8\sdk\v2.0\bin) to get the IL code, amend this code by hand (if you're just changing hard coded references this might not be too difficult) and then use ilasm.exe to reassemble the DLL which you can then redeploy.

Given that you say you're not an experienced developer, I'd recommend that you invest a couple of hours in the first solution; the second is quick and dirty but it definitely isn't trivial.

It definitely isn't definatley

GeneralRe: Lost cs Files in ASP.NET Website.... Now I need to make additions. Pin
ortaparmak20-Jan-09 5:42
ortaparmak20-Jan-09 5:42 
GeneralRe: Lost cs Files in ASP.NET Website.... Now I need to make additions. Pin
ortaparmak21-Jan-09 10:29
ortaparmak21-Jan-09 10:29 
QuestionValidating a "Text" file Pin
dwolver20-Jan-09 4:14
dwolver20-Jan-09 4:14 
AnswerRe: Validating a "Text" file Pin
musefan20-Jan-09 4:23
musefan20-Jan-09 4:23 
GeneralRe: Validating a "Text" file Pin
EliottA20-Jan-09 4:24
EliottA20-Jan-09 4:24 
GeneralRe: Validating a "Text" file Pin
musefan20-Jan-09 4:36
musefan20-Jan-09 4:36 
AnswerRe: Validating a "Text" file Pin
EliottA20-Jan-09 4:23
EliottA20-Jan-09 4:23 
GeneralRe: Validating a "Text" file Pin
dwolver20-Jan-09 4:32
dwolver20-Jan-09 4:32 
GeneralRe: Validating a "Text" file Pin
EliottA20-Jan-09 4:35
EliottA20-Jan-09 4:35 
GeneralRe: Validating a "Text" file Pin
musefan20-Jan-09 4:39
musefan20-Jan-09 4:39 
GeneralRe: Validating a "Text" file Pin
Guffa20-Jan-09 6:11
Guffa20-Jan-09 6:11 
AnswerRe: Validating a "Text" file [modified] Pin
Luc Pattyn20-Jan-09 4:38
sitebuilderLuc Pattyn20-Jan-09 4:38 
GeneralRe: Validating a "Text" file Pin
dwolver20-Jan-09 4:42
dwolver20-Jan-09 4:42 
AnswerRe: Validating a "Text" file Pin
Luc Pattyn20-Jan-09 5:09
sitebuilderLuc Pattyn20-Jan-09 5:09 
GeneralRe: Validating a "Text" file Pin
EliottA20-Jan-09 5:53
EliottA20-Jan-09 5:53 
GeneralRe: Validating a "Text" file Pin
PIEBALDconsult21-Jan-09 5:58
mvePIEBALDconsult21-Jan-09 5:58 
AnswerRe: Validating a "Text" file Pin
Luc Pattyn21-Jan-09 6:10
sitebuilderLuc Pattyn21-Jan-09 6:10 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.