Looks like there was some heavy partying going on in Bulgaria on New Years Eve.
Steve
A couple years ago when I was evaluating ASP.NET control suites I looked at two vendors very closely -- Telerik and Infragistics. The high level summary goes something like this -- at the time the Infragistics controls were plentiful, but lacked the polish and quality of the Telerik offering. So I made the logical decision and purchased the Telerik suite. During my first year of ownership I noticed a few things that were very impressive to me:
Renewing my Telerik subscription for another year was a no-brainer. During the second year of ownership I have noticed a few changes. As with just about everything in life, some things stay the same, some things change for the worse, and other things improve. I am sure these changes have very good reasons behind them, I list them here mainly because these are the things that have set Telerik apart from other companies:
I don't want to get in to a feature comparison here -- we all know that Telerik has some products and features that Infragistics doesn't and vise versa. My thought is that I haven't seen anything from Telerik to show me that they are working to be a leader with their current offerings. The reporting and Windows form products are in its early stages, and it is hard to see where Telerik plans to take these products. Can the Telerik organization realistically handle developing and supporting all of the new products they have created (Reporting, Windows Controls, SiteFinity), and continue to provide the same level of quality and service we have come to expect in previous years? Is the Telerik product line expanding faster than they are? Are they attempting to research, develop, market, and support too many products in a too short a period of time?
I am a happy Telerik customer and my interaction with the company has been largely positive. So much so that I actually want to see them succeed (as opposed to not caring either way). As far as I can tell, Infragistics has been very busy playing catch-up, and they are really challenging the Telerik product lines. Taking another look at these two vendors today makes me wonder if Telerik is loosing the edge they had in product focus, quality, and feature-set.
I built an ASP.NET 2.0 web site in my computer which has about 30 web pages.
I needed to use ( latest version ) only in the last page.
So I created a web site with just one page to test the “ASP.NET Ajax-Enabled Web Site” code of this page separately before integrating it with the previous big web site which is based simply on ASP.NET.
Both web sites work fine separately but when I added the web page with the code and also the modified web.config, it messed up the CSS formats( coded in the AB.css file ) on all Web controls that use the CssClass property. As result of that the text appears only with its default attributes with big black character founts which destroy the aesthetics and organization of the pages.
Here is a simple code example where the this problem appears:
<asp:Label ID="usernameLb" CssClass="Test" runat="server" ></asp:Label>
And here is its CSS code ( inside a “.css” file ) :
.Test
{
position:absolute;
left:450px;
top:110px;
z-index:3;
color: #0000ff;
font-family: Verdana,Arial,Helvetica;
font-size: 15px;
font-weight: normal;
}
What could be the cause ?
( my OS is windows XP prof and I am using Visual Studio 2005 and IE 6 )