HTTP Error 404.0 - Not Found
The resource you are looking for has been removed, had its name changed, or is temporarily unavailable.- The directory or file specified does not exist on the Web server.
- The URL contains a typographical error.
- A custom filter or module, such as URLScan, restricts access to the file.
Hi Guys,
Using Url property how can navigate to another page and i also want to pass the parameter along with navigation.
BlogPage.cs:-
[ContentType(DisplayName = "BlogPage", GUID = "b50836e3-9efd-4a4d-b0ee-7ecad52a684d", Description = "")]
public class BlogPage : PageData
{
[CultureSpecific]
[Display(
Name = "Blog Link",
Description = "",
GroupName = SystemTabNames.Content,
Order = 5)]
public virtual Url BlogLink { get; set; }
[CultureSpecific]
[ReadOnly(false)]
[Display(
Name = "Main Heading",
Description = "",
GroupName = SystemTabNames.Content,
Order = 2)]
public virtual string MainHeading { get; set; }
}
.Cshtml
@foreach (var i in ViewBag.ss)
{
@i.MainHeading
}
i have written the above code, but i did not pass parameters to it
Thanks,
Kartheek