Developer forum

Forum » Development » .NET 1.1

Reply

 I have to convert a module we made to .NET 1.1 as the customer is running some old dynamicweb files and apparently cant upgrade the server to 2.0.

 

So if I have to remake the module, I need and old Dynamicweb setup. Is it possible to download this somewhere?

 

- Sune

 

 


Replies

 
Reply

I may be able to dig something out, but could you give me a call about this next week?

 
Reply
Sorensen wrote:

I may be able to dig something out, but could you give me a call about this next week?

I just Received the DLL set from the customer, so I'll see what I can do with them for now.

 

But I got one question:

How do you make custom modules without the Dynamicweb.Extensibility namespace?

 

I made one a couple of years ago but I cant remember how its done and I cant find the code. :P

 

- Sune

 
Reply

I don't have an example at hand, but we had something called CustomModulesHandler in Default.aspx which contained a switch case statement containing all custom modules on a solution.

 

CustomModulesHandler(string ModuleSystemName, DataRow ParagraphRow){

    switch (ModuleSystemName){

        Case "MyCustomSystemName":

        CustomModules.MyCustomModule MyModule = new CustomModules.MyCustomModule();

        return MyModule.GetModuleOutput(Dynamicweb.Frontend.Pageview.current(), ParagraphRow);

        break;

    }

}

 

There's gotta be someone out there with an example:)

 
Nicolai Høeg Pedersen
Reply

Hi Sune

 

I've sent you a good old project you can use. It is a 2.0 project with 1.1 Dynamicweb project model - just include the files in a 1.1/vs2003 project, rebuild and it will work.

 

You must be logged in to post in the forum