<a href="@Url.Action("Index","Home")"><img src="@Url.Content("~/Themes/Gold/images/try-onit.png")" alt="Home" /></a>
Thursday, August 30, 2012
ActionLink with Image in ASP.NET MVC 3
Description: HTTP 404. The resource you are looking for (or one of its dependencies) could have been removed, had its name changed, or is temporarily unavailable. Please review the following URL and make sure that it is spelled correctly.
Wednesday, August 22, 2012
An optional parameter must be a reference type, a nullable type, or be declared as an optional parameter
I got this error when i redirect to another action with parameters.
In my case, the problem was parameter name. Add correct parameter.
return RedirectToAction("ProductTryout", new RouteValueDictionary(new { controller = "Catalog", action = "ProductTryout", productId = model.Id }));
In my case, the problem was parameter name. Add correct parameter.
return RedirectToAction("ProductTryout", new RouteValueDictionary(new { controller = "Catalog", action = "ProductTryout", productId = model.Id }));
Monday, August 20, 2012
A generic error occurred in gdi+
You can not save the same bitmap which is being used by other process. So rename it and then try to save
Thursday, August 16, 2012
Wednesday, August 15, 2012
A route named could not be found in the route collection. NopCommerce
Go to the Nop.Web.Infrastructure.RouteProvider.cs
Add following Code
routes.MapLocalizedRoute("YourLink",
"customer/YourLink",
new { controller = "Customer", action = "YourLink" },
new[] { "Nop.Web.Controllers" });
Add following Code
routes.MapLocalizedRoute("YourLink",
"customer/YourLink",
new { controller = "Customer", action = "YourLink" },
new[] { "Nop.Web.Controllers" });
Subscribe to:
Posts (Atom)
TinyMCE Insert/Edit link not editable
To fix this add e.stopImmediatePropagation() as below. $(document).on('focusin', function (e) { if ($(e.target).close...
-
I spent plenty of time for delving into this problem' depths. I can summarize the solution as follows: 1. Create The Entity Class (e.g...
-
Image upload with CKEditor. My latest issue was how to integrate CKFinder for image upload in CKEditor. Here the solution. 1. Download C...
-
Introduction: In my MonoGame Android project, I wanted to provide users with the option to rate my app when they clicked a button within the...