frameworks

xsl asp.net open source projct

can any one indicate a asp.net open source project based on xsl? Thanx. ...

zend framework + core php integration

Hi I have to convert a site in zend framework. Site is big I can't convert the site at a time in zend It will take abt 6 months. Is it possible that I update it module by module (parts) and keep on uploading in live site so some module of my site will run on zend and some on core php. Can I do any setting for url in zend framework so ...

Access Other Entity Collections from Entity Partial Class

I have an entity class that has a property that contains a business code. I would like to add a property that will contain the description of that business code. To do this it will require that I query another entity collection, but the entity collection doesn't seem to be accessible in the partial class of the entity. I can't solve t...

Php framework VS raw php code?? Can I build facebook from scratch using, say, cakePhp?

I'm considering learning a PHP framework for rapid development. I've a solid background in PHP and Jquery including AJAX. I'm felling that there should be some major flexibility that I lose if I use frameworks, just like using CMS's. Is it true? Or can I build virtually anything AJAX driven using frameworks? Like including notifications....

.NET Framework 4.0 Client Profile vs .NET Framework 4.0

When I started new .NET Console Application in VS2010, By default Target Framework was set to .NET Framework 4.0 Client Profile, what is the difference between .NET Framework 4.0 and .NET Framework 4.0 Client Profile ...

Does an associaton behave differently than a relationship?

I'm using the entity framework My customer class has an AccountID property that includes account information from other tables (such as address and specific account info) by loading the other tables into the property based on their relationships. like this: tblAccount acct = new tblAccount(); tblCust cust; tblAddress addr; public Cus...

How to write a web framework as a learning experience

I would like to write my own (toy?) web framework as a learning experience. I want to go through the whole process from scratch. I'd like it to be served through Apache on Linux. I'm looking for the best route to understanding every step of what is happening when using a web framework. I'd like to use whatever language best facilitates t...

Jquery css Compass-like correction

jQuery has opacity correction when you use css method (lines 4592-4608 on jQuery 1.4.2): // IE uses filters for opacity if ( !jQuery.support.opacity && name === "opacity" ) { if ( set ) { // IE has trouble with opacity if it does not have layout // Force it by setting the zoom level st...

What are the big web frameworks today?

My team at work is going to start working on a website with a medium amount of business logic and a large amount of database. soon. We've got to pick a language and a framework to build it on, but we're not really sure where to start. There are literally a zillion options. All we need is something that hooks into database, something ...

Python Web Programming Steps to that and this and yeah and oh?

Hi guys, I'm really interested in being a good programmer. So far what I've been doing is just reading a whole bunch of my friend's dad's programming books. I've been just kind of stumbling through and no help can be gotten from my friend's dad because he's kind of gone... for a long time. haha. Anyway, I think I'm getting nowhere jus...

Should I always store a string of HTML instead of printing out portions of it at time?

I've come across dozens of scripts in which html is echo'd out instead of being stored. I'm wondering if it's generally a good practice of always storing the html in a string due to the flexible nature? A random example would be that I have a function that returns the html for a dynamic subnavigation. I'm printing the opening div tag, p...

I'm been away from PHP for a number of years. What frameworks are available and recommended?

Possible Duplicate: Best PHP framework for an experienced PHP developer? I'm not new to PHP, I'm experienced in several other languages as well. I'm currently using a lot of c# and ASP.net at work. I would like to get back into PHP for my personal programming but am wondering what frameworks are out there and what ones are rec...

Does using a PHP framework affect performance?

If I used Code Igniter or the Cake Framework, will it affect the performance of my application? ...

Are there specific parts of PHP I should learn to help me use CodeIgniter in the future?

I'd like to learn PHP with a view to using CodeIgniter to make a few apps. Does this alter what or how I should approach PHP to start with? I'm a designer with good front-end skills. I used Coldfusion in University but want to build stuff in a language more widely supported (and respected?). CodeIgniter seems great but I'd like to know ...

Golem Python Framework

Hi, we started a new project Golem Python Framework. Golem is an engine for creating 2D games (strategies, arcades, games on chessboard) and to learn basics of programming. We are planning a website for trying work with Golem for scholars of elementary schools. You can read more about Golem at Wiki. What is your opinion? Official websit...

Zend Framework Testing controller Zend_Controller_Exception: No default module defined for this application

Hello. I try to write test for controller. I use OS Windows, zend framewokr and my libraries are in C:/library which is added to the include_path of php.ini. When I run test testLoginAction I get an error No default moudulde define for the application. But I don't use modules at all. Do you know how to solve this problem? IndexController...

Smart Links in Objective-C

I have an Objective-C application that uses WebKit for rendering and I would like a system to automatically detected the NSRanges of links and create them into the proper HTML anchor links. Currently I use a touchy regex to do this, but I am seeking a more sophisticated-like system that can tell the difference between links like http://w...

What is better - polymorphism or inheritance as a concept for operating with a .net library?

If I create a library with most functions meant for overwriting, meaning that you will need to put your logic into some of initial library functions to get what you want from library. will it be normal\usual\OK? will such library be called a framework? Example In my library I have CreateData function, lots of other functions and one, le...

Drawbacks of cakePHP framework

hello friends, Can any one list me out what are the drawbacks of CakePHP framework over other PHP frameworks? 1) And please explain why that missing feature is so important for a PHP project? 2) How that missing feature help the web developers those who using the Framework with that feature? ...

Entity framework 1.0 issue

Problem is it seems that when I use the code below to assign the location values obtained from a ListBox to the division being created/edited EF creates a new location and then enters that locations ID and the divisions is into the DivisionLocation table thus creating multiple locations unnecessarily, as depicted below. using (FRLEntiti...