Product Bundles
DevCraft
All Telerik .NET and Kendo UI JavaScript components and AI Tools in one package.
Kendo UI
Bundle of AI Tools plus four JavaScript UI libraries built natively for jQuery, Angular, React and Vue.
Build JavaScript UI
Javascript
Telerik
Build modern .NET business apps
.Net Web
Cross-Platform
Desktop
Reporting and Documents
AI for Developers & IT
Ensure AI program success
AI Coding
AI Engineering
Additional Tools
Enhance the developer and designer experience
Testing & Mocking
Debugging
AI-Enhanced UI Tools
CMS
Free Tools
Support and Learning
Productivity and Design Tools
Hello I am very new to the telerik controls I am trying to change the radbox text in the page load event but it is not changing .
<
radtextbox
id
=
"test"
runat
"server"
>
public void page_load()
{
test.Text= Session.PageCount.ToString();
}
Hi,
Your HTML mark up for RadTextbox is wrong, Usually Telerik controls will have a TagPrefix “telerik”, just like "asp" for asp.net controls.
Please modify your code like given below
asp:ScriptManager
ID
"ScriptManager1"
</
telerik:RadTextBox
Side Note : Make sure you have the below tag prefix line in your page.
<%@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %>
Telerik Rad Controls Introduction
Telerik RadTextboxDemo
Adding a new Telerik Rad controls to a ASP.Net page Thanks, A2H