PDA

View Full Version : لود نشدن devexpress



hanis29268
پنج شنبه 02 آبان 1392, 17:40 عصر
با سلام،
بنده یه برنامه وب سایت دارم که وقتی میخوام اجراش کنم خطای زیر رو میده:

Error 37 Could not load file or assembly 'DevExpress.Web.v13.1, Version=13.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a' or one of its dependencies. The system cannot find the file specified. C:\Users\Goldengriff\Desktop\Farhangi_Site\web.con fig 24

اینم لینک دانلود سورس برنامه:


http://goldengriff.persiangig.com/Farhangi_Site.rar/download

bomb23
جمعه 03 آبان 1392, 14:44 عصر
سلام من قبلا سعی کردم ازش استفاده کنم ولی چون اصل نیست نرم افزار فقط رو local درست کار میکنه. وقتی رو سرور باشه یا devexpress نصب نباشه ارور بالا رو میده. یا باید به hostet بگی dev نصب کنه که فک نکنم یا اصل نرم افزارو بخری یا بیخبالش شی که به نظرم واسه حرفه ای شدن گزینه آخر بهتر باشه.

daffy_duck376
شنبه 04 آبان 1392, 01:05 صبح
سلام من قبلا سعی کردم ازش استفاده کنم ولی چون اصل نیست نرم افزار فقط رو local درست کار میکنه. وقتی رو سرور باشه یا devexpress نصب نباشه ارور بالا رو میده. یا باید به hostet بگی dev نصب کنه که فک نکنم یا اصل نرم افزارو بخری یا بیخبالش شی که به نظرم واسه حرفه ای شدن گزینه آخر بهتر باشه.
نه داداش هیچ شرکتی برای شما اینکار رو نمیکنه و این زاهش نیست. اگر جواب رو نمیدونید حداقل طرف رو گمراه نکنید
شرمنده حوصله ترجمه ندارم
DLL های بدست آمده را در فولدر Bin سایت copy کنید و از ابزارها لذت ببرید

Get DLL Out of The GAC
DLLs once deployed in GAC (normally located at c:\windows\assembly) can’t be viewed or used as a normal DLL file. They can’t be directly referenced from VS project. Developers usually keep a copy of the original DLL file and refer to it in the project at development (design) time, which uses the assembly from GAC during run-time of the project.
During execution (run-time) if the assembly is found to be signed and deployed in GAC the CLR automatically picks up the assembly from the GAC instead of the DLL referenced during design time in VS. In case the developer has deleted the original DLL or don't have it for some reason, there is a way to get the DLL file from GAC. Follow the following steps to copy DLL from GAC


Run regsvr32 /u C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\shfu sion.dll
shfusion.dll is an explorer extension DLL that gives a distinct look to the GAC folder. Unregistering this file will remove the assembly cache viewer and the GAC folder will be then visible as any normal folder in explorer.
Open “%windir%\assembly\GAC_MSIL”.
Browse to your DLL folder into the deep to find your DLL.
Copy the DLL somewhere on your hard disk and refer it from there in your project
Run "regsvr32 /i %windir%\Microsoft.NET\Framework\<.NET version directory> \shfusion.dll" to re-register the shfusion.dll file and regain the original distinct view of the GAC.



این هم لینکش (http://stackoverflow.com/questions/714907/how-to-extract-an-assembly-from-the-gac)