or
MasterPage
Page.aspx
UserControl1.ascx (ToolTipMgr1)
UserControl2.ascx (ToolTipMgr2)
UserControl2.ascx (ToolTipMgr2)
UserControl2.ascx (ToolTipMgr2)
Is there a way to show the total number of files selected to upload even when they are queing.
The other thing is why does Uploading file: status always say Uploading Files... should this not display the file name as it states in the documentation.
Thanks
<
rad:RadScriptManager
ID
=
"RadScriptManager1"
runat
=
"server"
/>
<
asp:UpdatePanel
runat
=
"server"
ID
=
"UpdatePanel"
><
ContentTemplate
>
<
rad:RadEditor
runat
=
"server"
ID
=
"Editor"
/>
<
asp:Button
runat
=
"server"
Text
=
"Submit"
OnClick
=
"Submit_Click"
/>
<
div
runat
=
"server"
ID
=
"Output"
></
div
>
</
ContentTemplate
></
asp:UpdatePanel
>
protected
void
Page_Load(
object
sender, EventArgs e)
{
if
(!IsPostBack)
Editor.Content =
"Hello World"
;
}
protected
void
Submit_Click(
object
sender, EventArgs e)
{
Output.InnerHtml = Editor.Content;
}
I'm trying to add a new page in my PDF by using this code:
<br style="page-break-after:always" /><p>content</p>
But no new page is generated ... the content is just being added to the end of the last page.
Can anyone tell me how to force a page break?
Regards