Rank: Newbie Groups: Member
Joined: 11/24/2008 Posts: 5
|
Dear All,
with the following code I want to display a eo:ajaxuploader control in a simple page ( I have remove all the complicated part of the code of the page ). But the page scrolls down even if there is no other content. To understand what I mean you have to run the following code. Thank you for your quick reply John
<%@ Page Language="VB" Culture="auto" UICulture="auto" AutoEventWireup="true" %>
<%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="ajaxToolkit" %>
<%@ Register assembly="EO.Web" namespace="EO.Web" tagprefix="eo" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<HTML>
<head>
<LINK href="/pct/Stylesheets/page.css" rel="stylesheet"> </head>
<Body > <Form name="form_kin" runat="server" method=post ID="form_kin"> <table border="1" cellpadding="0" cellspacing="0" width="100%" height="100%" id=table111> <!-- HERE WE PLACE THE CODE FOR CUSTOM PAGE OF THE SERVICE --> <tr valign=top > <td> <eo:AJAXUploader runat="server" id="AJAXUploader1" TempFileLocation="~/eo_upload"> </eo:AJAXUploader>
</td> </tr> <!-- /////////////////////////////////////////////////////// --> <tr valign=bottom> <td height=25 bgcolor= "#0066FF"> </td> </tr> </table> </form> </Body> </HTML>
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
Hi,
This appears to have to do with the external CSS style file (page.css) that your page references.
Thanks!
|