I have a simple webpage setup for testing. When I run the website under debug mode the controls display correct. However, when I move the website over to my server the control don't appear correct.
For example, the DatePicker function only has a link that says "Open the calander popup" instead of the little calander icon
And also the RadComboBox only has select
instead of the drop down arrow.
There is no aspx.cs to show you guys, however here is my aspx. I'm pretty sure i'm missing something.
Here is the aspx
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="testingpage.aspx.cs" Inherits="testingpage" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
</head>
<body>
<form id="form1" runat="server">
<telerik:RadScriptManager ID="RadScriptManager1" runat="server">
</telerik:RadScriptManager>
<div>
<telerik:RadDatePicker ID="RadDatePicker1" runat="server">
</telerik:RadDatePicker>
<telerik:RadComboBox ID="RadComboBox1" runat="server">
</telerik:RadComboBox>
</div>
</form>
</body>
</html>
I do move the bin folder over which has all the dlls. I am running .net4.0 in intergrated mode.