I've seen exe's and dll's in past that had resources packed into them. The next .NET is supposed to have the option to compile an entire site into just a dll....
William Forney
WForney@...
Dec 1, 2004 9:25 am
689
If you mean ascx only.... I think it is possible... (you need the ascx anyway but it can be empty... and this is needed also in ASPNT 2.0) Not so easy to do...
What I mean is -- have the ability to drop new modules into a working site and use them without having to rebuild Rainbow in visual studio. No .cs files. My...
If you put all code in ascx file.. yes.. no dll. You must see the one file module.... it is exactly what you are searching for (you find on standard rainbow...
You don't need to recompile even with code-behind if you use the "src" directive in your ascx or aspx files.. and refer to a .cs Rahul On Wed, 1 Dec 2004...
Oh Powerful Rainbow Gods: I'm writing a custom ECommerce Module and am having trouble with a Place Holder. I have a basic HomePage with a PlaceHolder on one...
Robert Zordel
rzordel@...
Dec 1, 2004 8:54 pm
695
Oh Powerful Rainbow Gods: I'm writing a custom ECommerce Module for Rainbow and am having trouble with a Place Holder. I have a basic HomePage with a...
Robert Zordel
rzordel@...
Dec 1, 2004 8:59 pm
696
2 hints: 1) is viewstate of page enabled? 2) is viewstate of control enabled? one more: are you relying on values that are stored in private varibles (private ...
The latest source zip file will now be available on the demo home page. I had one other person try and I think they got it to build. I am now hung up in...
Viewstate is enabled on both controls (the parent that contains the Placeholderl, and the child that fills it) I actually stripped the page down to nothing. I...
I personally do not like the idea of all the code in the ascx. It makes debugging very hard to do and is a step back to the asp days. The idea of code-behind...
You do not have to build rainbow. If the module has its own dll, you just put the dll into the bin folder, the module into desktopmodules and install the sql...
I agree. If you as a module author want to build your custom modules with the code in the ascx, that's your business and they will compile and run fine at...
William Forney
WForney@...
Dec 3, 2004 5:29 am
702
I was not planning on putting code in the ascx files, I don't like this either. I was just asking if and how you can install modules without rebuilding...
I have just lifted the settings support classes for the datatypes and settings table out of Rainbow and used them in my project. With a few modifications. I...
I'd think that the hashtable would be about the simplest think to serialize/deserialize. I think you could probably substitute Hashtables with with the...
for licence: no problem... just refer to that on header file. for esperantus: we have almost completed the port to a provider model so you may help us to...
It's done that way. The hard part was reverse engineering the Rainbow settings and nunit testing for memory leaks. I created an xml file and read it back in a...
Current modules not compatible, but close. I have started a basic set of modules, each port is easier than the last. I would like to stop and think about a way...
I have an example up on this site... http://rzordel.codeapplyconquer.com but I think I figured it out... I wasnt updating the Placeholder in the Page_Load...
I'm sorry the correct website is http://rzordel.codeapplyconquer.com/rainbow Thank, Robert Robert Zordel <robertzordel@...> wrote: I have an example up...
Yes, at the top of the ascx file are lines that associate the page with dlls and other resources. I don't have my .Net open right now, but it is a standard...
I am very close to being able to load Rainbow modules without modification. I have already loaded the SendThoughts module but it is a very simple case. There...
I sort of spoke too soon, these will be a problem. I will assume there is already a Rainbow database with some minimum settings, maybe one tab, I don't know....
Yeah, I have thought how cool it would be to have a webcontrol wrapper that you could simply drag from your tool box and run any Rainbow or DNN control. This...
This could be done, but you currently would need a setup rainbow database to accommodate all the settings. When V.Next arrives it will be more modular I'll...
William Forney
WForney@...
Dec 6, 2004 12:10 am
717
I was in the vNext group while it lasted. The only concrete data store class we started is in my project in the form of the persistence layer. It's not very...