What is a DLL Hell Problem in .Net?
Answers were Sorted based on User's Feedback
Answer / bhagsingh kherwal
A DLL HELL PROBLEM IS ARISE WHEN WE DEPLOYEE OR REGISTER A
NEW APPLICATION THAT'S PREVIOUS VERSION ALREADY RUNNING ON
OPERATING SYSTEM IT WILL CREATE A PROBLEM OF OVERRIDING OF
PREVIOUS VERSION AND MAKE CHANGE IN SYSTEM REGISTERY. .NET
PROVIDE A FACILITY OF GAC GLOBAL ASSAMBLY CACHE IN WHICH
WHEN NEW APPLICATION DEPLOYEED THEN IT EASILY DIFFERENCIATE
WITH PREVIOUSLY RUNNING VERSION IN MANY WAY AS THEIR NAME,
VALUE, CULTURE AND OTHER THEN DLL PROBLEM WILL NOT ARISE.
Is This Answer Correct ? | 0 Yes | 0 No |
Answer / rajendra patel jat
Its about assembly version problem but now solved.
Is This Answer Correct ? | 5 Yes | 8 No |
What is server infrastructure?
Difference between response.redirect and server.transfer?
how to do pakaging nd deployment
What is the Global ASA(X) File?
When is the ViewState available during the page processing cycle ?
Can we change the session timeout in ASP.NET, if yes then how and from where?
Explain the difference between asp & asp.net.
Explain About WebService
Explain global assembly cache.
What is asp.net localization?
How Response.flush works in server.Execute ?
1 Answers Keane India Ltd, TCS,
accessing a textbox that was created dynamically? for (int i = 0; i < t1; i++) { TextBox t2 = new TextBox(); t2.ID = "adf" + i; PlaceHolder1.Controls.Add(t2); } accessing data entered in the above created controls.