Telerik ASP.NET问题 [英] Telerik ASP.NET problem

查看:44
本文介绍了Telerik ASP.NET问题的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试将Telerik组件集成到我的ASP.NET应用程序中.
我使用了telerik的ASP.NET AJAX组件.我遇到以下问题:
每当我发布表单时,组件结果都为null,而当我使用标准ASP.NET组件时,则得到期望的结果:

这是我的代码:
当我单击第三个选项卡中的asp:Button时,应发布表单,但我得到的值如下:
RadNumericTextBox13.Value = null
RadTextBox3.Text ="
RadTextBox4.Text ="


这是我的代码:
****************************************************** ******************************************************

I am trying to integrate telerik components in my ASP.NET application.
I have used ASP.NET AJAX components from telerik. I have encountered the following issue:
Whenever i post the form the components result as null whereas when i use standard ASP.NET components i get the desired results:

Here is my code:
When i click an asp:Button in the third tab the form should be posted but i get the values as following:
RadNumericTextBox13.Value = null
RadTextBox3.Text=""
RadTextBox4.Text=""


Here is my code:
***************************************************************************************************

protected void Button1_Click(object sender, EventArgs e)
        {
            PayRollDataContext pr2 = new PayRollDataContext();
            Bounce bp = new Bounce();
            bp.Payroll_ID = current;
            bp.Amount = Convert.ToDecimal(RadNumericTextBox13.Value);
            bp.Description = RadTextBox3.Text;
            bp.Time = RadTextBox4.Text;
            pr2.Bounces.InsertOnSubmit(bp);
            pr2.SubmitChanges();
            RadGrid1.Rebind();
            this.Page.DataBind();
        }
********************************************************************************************************

<telerik:RadTabStrip ID="RadTabStrip1" runat="server" CssClass="tabStrip"

                SelectedIndex="0" Skin="Black" MultiPageID="RadMultiPage1"

                ontabclick="RadTabStrip1_TabClick1">

                <tabs>
                    <telerik:RadTab Text="General" Selected="True">
                    </telerik:RadTab>
                    <telerik:RadTab Text="Decuts">
                    </telerik:RadTab>
                    <telerik:RadTab Text="Bounce">
                    </telerik:RadTab>
                    <telerik:RadTab Text="Loans">
                    </telerik:RadTab>
                </tabs>
            </telerik:RadTabStrip>
//***************************************************************
<asp:Button ID="Button1" runat="server" onclick="Button1_Click" Text="Add"/>
//*************************************************************
 <form  runat="server" id="mainForm" method="post">



请帮助



Please Help

推荐答案

如果您在使用第三方控件时遇到麻烦,则意味着您已经向某人支付了使用其控件的费用,并且他们的技术支持应该是第一人谁最有能力为您提供帮助.他们还应该为控件的用户提供论坛,开发人员将在论坛上发布这些论坛.我从未使用过这些控件,并且这里的许多其他人都是相同的.我会说,如果可以的话,我会帮助您,他们的支持将更有可能知道您的要求,从而更好地提供帮助.
If you have trouble with third party controls, it means you''ve paid someone to use their controls, and their tech support should be the first people who are best able to help you. They should also have forums for users of their controls, which their developers will post to. I''ve never used these controls, and a lot of other people here will be the same. I''d help if I could, I''m just saying, their support will be more likely to know what you''re asking, and thus better able to help.


这篇关于Telerik ASP.NET问题的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆