Click here to Skip to main content
15,885,278 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:






------------------------------------------------------------Action --------------------------
[HttpPost]
public ActionResult Views(int id)
{
int ids = id;
return View();
}

---------------------Error Message-----------------------------
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.
Posted
Comments
awaisshabir 6-Aug-14 6:08am    
<td class="action-col">
<span class="btn-group">

@*@Html.ActionLink("Views", "Views", new { id = @item.ID, @class = "icon-search" })*@


</span>
</td>
awaisshabir 7-Aug-14 10:42am    
thanks
i have another Question
i'm using md5 Encrytion but error was occure
error message
An exception of type 'Microsoft.CSharp.RuntimeBinder.RuntimeBinderException' occurred in System.Core.dll but was not handled in user code
code
@foreach (var item in ViewBag.GetAllInfo)
{

string encty = DentalCloud.AppCode.CryptorEngine.Encrypt(item.ID, true);

try this @htmal.Actionlink("display name","your controller name","your methods name")


and check this linkHope it helpfully

also check this one
 
Share this answer
 
Isyour controller name Views & also action name?
Check the below solution on the link. You may get some help.:-
Link^
Thanks
:)
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900