Where do we submit bugs?

I've been submitting what I would concider bugs to this forum. Is this the correct place to be doing this?

0
6 comments

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.
0

On 09.07.2011 21:27, Bobby Cannon wrote:

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.

0
Avatar
Andrey Serebryansky

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!"

I've been submitting what I would concider bugs to this forum. Is this
the correct place to be doing this?

---
Original message URL:
http://devnet.jetbrains.net/message/5308926#5308926



0

I added a screen shot and a sample project.

0

Please sign in to leave a comment.