HOy potreboval bych pomoct.... delám web stránky pomoci ASP a potřeboval bych pomoct..... na této stánce http://dave-cz.aspone.cz/Stranky/Muzi/Fotografie.aspx mám problém se zobrazenim obrázku potřrboval bych, aby se mi obrázky zobrazily pod textem
a né až dole jde to nejak??????Fotografie mužu
zde mám tyto dva soubory:
1.
Fotografie.aspx.cs
using System;
using System.Configuration;
using System.Data;
using System.Linq;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.HtmlControls;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Xml.Linq;
using Valentica.Libraries.Utilities;
using System.IO;
public partial class Stranky_Muzi_Fotografie : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
DirectoryInfo directoryInfo = new DirectoryInfo(Server.MapPath("~//Fotky/Muzi//"));
foreach (FileInfo fileInfo in directoryInfo.GetFiles())
{
Encosia.HighslideImage hsl = new Encosia.HighslideImage();
hsl.ImageUrl = "~//Fotky/Muzi//" + fileInfo.Name;
hsl.FullImageURL = "~//Fotky/Muzi//" + fileInfo.Name;
hsl.Caption = "Obrázek: " + fileInfo.Name;
hsl.Height = 150;
Page.Controls.Add(hsl);
}
}
}
a druhý
Fotografie.aspx
<%@ Page Language="C#" MasterPageFile="~/MasterPage.master" AutoEventWireup="true" CodeFile="~/Stranky/Muzi/Fotografie.aspx.cs" Inherits="Stranky_Muzi_Fotografie" Title="TJ SPS Radkov - Muži - Fotografie" %>
<%@ Register Namespace="Encosia" Assembly="HighslideImage" TagPrefix="encosia" %>
<asp:Content ID="Content1" ContentPlaceHolderID="main" Runat="Server">
<div>
<h2 style="text-align: center">
Fotografie mužu</h2>
<encosia:HighslideManager ID="HighslideManager1" runat="server" OutlineType="RoundedWhite" ControlBar="true" />
</div>
</asp:Content>
Pomůže mi někdo? předem díky za odpověd.