3
Answers

Split The Html Div Text into multiple div

Anshul Johri

Anshul Johri

9y
527
1
I am having Dynamic content which is coming from database with the formatting text(like inline- css) and i want to split this content into multiple div's with specific heights. so that i can print this data into A4 pages with header and footer Fix.
Answers (3)
0
sathish kumar

sathish kumar

NA 9 4.2k 9y
Hi Praveen, 
 Thanks for your reply. 
   But in my situation,  it is not a DLL Hell Problem because am creating 2 dlls  at a time with a different name and different functionality and also in this dlls are not added in Registry Editor, it's saved only my application folder.
   I want Add Reference from A DLL to B DLL.
 
   public virtual Tuple<bool, string> isValid(Dynamic_Val_001)
   {
      return new Tuple<bool, string>(false, "Success");
   }
 
Dynamic_Val_001  is A DLL Class Name 
 
    
 
 
0
Praveen Dhatrika

Praveen Dhatrika

NA 840 2.1k 9y
To my understanding I think its like DLL HELL problem.
 
This kind of scenerio is generally termed as dllhell problem. 
Here is what it is,
 
1. I have 2 applications, A1 and A2 installed on my computer.

2. Both of these applications use shared assembly shared.dll

3. Now, I have a latest version of Application - A2 available on the internet.

4. I download the latest version of A2 and install it on my machine.

5. This new installation has over written Shared.dll, which is also used by Application - A1.

6. Application - A2 works fine, but A1 fails to work, because the newly installed Shared.dll is not backward compatible.

So, DLL HELL is a problem where one application will install a new version of the shared component that is not backward compatible with the version already on the machine, causing all the other existing applications that rely on the shared component to break. With .NET versioning we donot have DLL HELL problem any more.
 
also go through these links 

http://csharp-video-tutorials.blogspot.com/2012/07/dll-hell-part-6.html
http://venkataspinterview.blogspot.co.uk/2011/05/what-is-dll-hell-in-net.html 
http://csharp-video-tutorials.blogspot.com/2012/07/how-is-dll-hell-problem-solved-part-7.html
http://venkataspinterview.blogspot.co.uk/2011/06/how-is-dll-hell-problem-solved-in-net.html 

 If you find my post as useful then accept my reply as answer. :)