or
Hi
I have a form .I want show radwindow from code behind and then user enter data in radwindow and process data which user enter .similar
If dvwItemPayDetail.Count > 0 And AllowUpdate = True
Dim script As String =
ClientScript.RegisterStartupScript(
Me.GetType(), "showWindow"
'------------>> Not Stop .I want stop debug which user enter data in radwindow then continue to debug
<
asp:UpdatePanel
runat
=
"server"
id
=
"UpdatePanel1"
UpdateMode
=
"Conditional"
>
<
ContentTemplate
>
<
telerik:RadWindowManager
ID
=
"rwManager"
Behaviors
=
"Close,Move, Resize"
ShowContentDuringLoad
=
"false"
VisibleStatusbar
=
"false"
ReloadOnShow
=
"true"
runat
=
"server"
Skin
=
"Outlook"
EnableShadow
=
"true"
>
<
Windows
>
<
telerik:RadWindow
ID
=
"rwAdvancedSearchForm"
Modal
=
"true"
runat
=
"server"
Width
=
"700"
Height
=
"600"
>
<
ContentTemplate
>
<
table
class
=
"dv"
cellpadding
=
"0"
cellspacing
=
"0"
border
=
"0"
>
function showAdvancedSearchForm(){
var win = $find("<%#rwAdvancedSearchForm.ClientID %>");
win.show();
win.center();
}
function showAdvancedSearchForm(){
var win = $find("ctl00_PageContent_rwAdvancedSearchForm");
win.show();
win.center();
}
</
script
>
<
div
id
=
"ctl00_PageContent_UpdatePanel1"
>
<
div
id
=
"ctl00_PageContent_rwManager"
style
=
"display:none;"
>
<
div
id
=
"ctl00_PageContent_rwAdvancedSearchForm"
style
=
"display:none;"
>
<telerik:RadWindowManager ID="RadWindowManager1" runat="server">
<Windows>
<telerik:RadWindow runat="server" IconUrl="~/impromptu/att.png" Width="450px" NavigateUrl="DialogTozin.aspx" ID="Window1"></telerik:RadWindow>
</Windows>
</telerik:RadWindowManager>
I too want when show radwindow it was maximum size default
please help to me
Dim
downloadBytes
As
Byte
() = pdfConverter.GetPdfFromUrlBytes(URL)
Dim
response
As
System.Web.HttpResponse = System.Web.HttpContext.Current.Response
response.Clear()
response.AddHeader(
"Content-Type"
,
"binary/octet-stream"
)
response.AddHeader(
"Content-Disposition"
,
"attachment; filename="
+ FileName +
"; size="
+ downloadBytes.Length.ToString())
response.Flush()
response.BinaryWrite(downloadBytes)
response.Flush()
response.
End
()