The code works just as expected but ReSharper is complaining that the action doesn't exist.
Bobby, there is not enough information. In best case, can you send your project for investigation? If you can't - can you create repro project with your error.
Like I've got a issue where ReSharper is stating this error in this CSHTML file.
@Html.ActionLink("Edit", "EditTask", "Task", new { id = item.ID })
"Cannot resolve action 'EditTask'".
Here is the controller code that is in "TaskController".
public ActionResult EditTask(int id)
{
if (!Request.IsAuthenticated)
{
return RedirectToAction("Index");
}
var tasks = new TaskCollection(_connectionString);
tasks.Load(_userID);
return View(tasks.GetTaskByID(id));
}
The code works just as expected but ReSharper is complaining that the action doesn't exist.
Hi Bobby,
submit Bugs here:
http://youtrack.jetbrains.net/issues/RSRP
André
On 09.07.2011 21:27, Bobby Cannon wrote:
Bobby, there is not enough information.
In best case, can you send your project for investigation?
If you can't - can you create repro project with your error.
Hello Bobby,
You can follow these guidelines: http://devnet.jetbrains.net/docs/DOC-279
when submitting bugs. Thank you!
Andrey Serebryansky
Senior Support Engineer
JetBrains, Inc
http://www.jetbrains.com
"Develop with pleasure!"
This is a similar issue. http://youtrack.jetbrains.net/issue/RSRP-273865
I added a screen shot and a sample project.