Hello Guys...
I have Question About Radwindow.
I created a Radwindow and I create few Control like textbox and button box .
I want,when i clicked The button COntent of textbox or what ever there Send to the asp.net server
For Example :
On Radwindow:
<asp:TextBox ID="txt1" runat="server" />
<asp:TextBox ID="txt2" runat="server" />
<asp:TextBox runat="server" ID="txtresult" />
<asp:Button Text="click" ID="BtnClick" runat="server" />
------------------------------------------------------------
JAvaSCript:
<telerik:RadCodeBlock runat="server" ID="rdbScripts">
<script type="text/javascript">
function togglePopupModality() {
var wnd = $find("<%=modalPopup.ClientID %>");
wnd.set_modal(!wnd.get_modal());
if (!wnd.get_modal()) document.documentElement.focus();
}
function showDialogInitially() {
var wnd = $find("<%=modalPopup.ClientID %>");
wnd.show();
Sys.Application.remove_load(showDialogInitially);
}
Sys.Application.add_load(showDialogInitially);
</script>
</telerik:RadCodeBlock>
-----------------------------------------------------------
on Server Side(code behind)
protected void BtnClick_Click(object sender, EventArgs e)
{
LblResult.Text = txt1.Text + txt2.Text;
}
When I clicked the Button There is nothing To show.
How can i Do that >?
please help
I have Question About Radwindow.
I created a Radwindow and I create few Control like textbox and button box .
I want,when i clicked The button COntent of textbox or what ever there Send to the asp.net server
For Example :
On Radwindow:
<asp:TextBox ID="txt1" runat="server" />
<asp:TextBox ID="txt2" runat="server" />
<asp:TextBox runat="server" ID="txtresult" />
<asp:Button Text="click" ID="BtnClick" runat="server" />
------------------------------------------------------------
JAvaSCript:
<telerik:RadCodeBlock runat="server" ID="rdbScripts">
<script type="text/javascript">
function togglePopupModality() {
var wnd = $find("<%=modalPopup.ClientID %>");
wnd.set_modal(!wnd.get_modal());
if (!wnd.get_modal()) document.documentElement.focus();
}
function showDialogInitially() {
var wnd = $find("<%=modalPopup.ClientID %>");
wnd.show();
Sys.Application.remove_load(showDialogInitially);
}
Sys.Application.add_load(showDialogInitially);
</script>
</telerik:RadCodeBlock>
-----------------------------------------------------------
on Server Side(code behind)
protected void BtnClick_Click(object sender, EventArgs e)
{
LblResult.Text = txt1.Text + txt2.Text;
}
When I clicked the Button There is nothing To show.
How can i Do that >?
please help