Hi everyone I am very new with jquery ui, I am try to create a Dialog when I click a link, but my app open a white page.
this is my link
<%: Html.ActionLink("Select Image", "SelectImage", "VacationPackage", null, new { @class = "newWindows" })%>
in the same view I have this
<script language="javascript" type="text/javascript">
$(function () {
$("#newWindows").dialog();
});
</script>
my problem is I don't know how create my view I put this ...
<%@ Page Title="" Language="C#" MasterPageFile="~/Views/Shared/Administration.Master" Inherits="System.Web.Mvc.ViewPage<dynamic>" %>
<asp:Content ID="Content1" ContentPlaceHolderID="TitleContent" runat="server">
SelectImage
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="MainContent" runat="server">
<h2>SelectImage</h2>
<% Html.RenderPartial("ListImage"); %>
</asp:Content>
Buy don't open the ListImage.. only a white page.
What is the problem??? I am trying many examples but i obtain the same result. any idea???
thanks.