Base solution for your next web application

Activities of "mrvithan"

I have tried to override following this topic #308, but it won't work. Still show default error message.

Solved already.

For the first issue: here is the shot code snap:

I have a IInputDto class said :

public class TheaterUpdate : IInputDto { public int Id;

[Required] public string name; }

Then in a AppService said :

public class TheaterAppService: ITheaterAppService { public void AddOrUpdate(TheaterUpdate entity) { var obj = new Theater() obj.Id = entity.Id; obj.Name = entity.Name; _repo.InsertOrUpdate(obj);

} }

then i will get the Exception said there is already has the same entity key exists. And suggestion ??

For the second issue, i will try in couple days and will feedback asap.

Solved. After running thru all source code, i found this LanguageManager !!!.

Ok i got more detail....

I am trying to use a HTML to PDF dll (<a class="postlink" href="http://www.nrecosite.com/pdf_generator_net.aspx">http://www.nrecosite.com/pdf_generator_net.aspx</a>), which run wkhtmltopdf execute file. And it auto install 2 files "msvcp120.dll" and another one into Web/Bin; which seems that the ABP loader can't load the DLL correctly. If i remove both DLL, the system run fine.

Any suggestion ?

Can you provide the requested namespace ?

Done !! ... thx a lot u save my life.

Yes, i did.

It happen to all controller i try to load. But now i remove the DLL and use different SDK (html2pdf) and i remove the additional code and everything run normal again.

Ok i found the error. The email is duplicated...!!! But it should throw an exception..

Beside SQL command timeout, do i need to config ajax call timeout also ? i have a long query which might take 3 - 5 mins to finish.

Please suggest.

Showing 1 to 10 of 17 entries