Experienced web developer from Ukraine <p>AEONT is the portfolio site of Volodymyr Muzyka - web developer/manager with 10 years of extensive commerce web development experience covering all phases of project development.</p> <p>In short my skill set looks like: .NET (1.1, 2.0, 3.5), ASP.NET (C#, VB.NET), ADO.NET, AJAX, MS SQL, Transact-SQL, Stored Procedures, LINQ, MS Access, XML, XSL, XPath, HTML, DHTML, XHTML, CSS, ASP, JavaScript, PHP, MySql, IIS, Apache, Visual Studio, TFS, SharePoint, Umbraco CMS, Composite CMS C1, Composite CMS 3.8., SEO</p> <p>My skills could be confirmed by portfolio containing <a href="/en/portfolio.aspx" title="Portfolio">over 55 completed projects</a>.<br /> <br /> Please look at <a href="/volodymyr_muzyka.rtf" title="Volodymyr's CV">my CV here</a> and LinkedIn profile <a href="http://www.linkedin.com/in/volodymyrmuzyka">http://www.linkedin.com/in/volodymyrmuzyka</a></p> <p>If you have any questions, feel free to give me a call +380675014265, Skype volodymyrmuzyka or email <a href="mailto:info@aeont.com">info@aeont.com</a></p> <p>Yours sincerely,<br /> Volodymyr Muzyka</p> Services: IT Outsourcing to offshore - web developmentIT OUTSOURCING, website design, internet shop, web site redesign, content management, site administration, e-commerce enabled, outsourcing ukraineit, offshore development, offshore outsourcing, offshore programming, outsourcing it, outsource software development, software outsourcing, design, web development, web programming, web site design, e-commerce applications, database application, integration servicesoutsourcingdeveloperweb developerwebsiteweb site designweb programming0Contact <p><span>Contact me by email or by one of the instant messengers.</span><br /> <br /> <img src="/Images/logo.email.gif" alt="email"/> <a href="mailto:info@aeont.com" class="link">info@aeont.com</a><br /> <br /> <img src="http://online.icq.com/scripts/online.dll?icq=48071574&amp;img=5" alt="icq"/>&nbsp;<strong>ICQ:</strong> 48071574<br /> <br /> <img src="/Images/logo.skype.gif" alt="skype"/>&nbsp;<strong>SKYPE:</strong> volodymyrmuzyka<br /> <br /> <img src="/Images/logo.msn.gif" alt="msn"/>&nbsp;<strong>MSN:</strong> info@aeont.com<br /> <br /> <img src="/Images/logo.aim.gif" alt="aim"/>&nbsp;<strong>AIM:</strong> vladenim<br /> <br /> <img src="/Images/logo.yahoo.gif" alt="yahoo"/>&nbsp;<strong>Yahoo!:</strong> vladenim@yahoo.com<br /> <br /> <img src="/Images/logo.mobile.gif" alt="mobile"/>&nbsp;<strong>Mobile :</strong> +380 67 5014265</p> Contact: it outsourcing, offshore development, offshore outsourcing, offshore programming, outsourcing it, outsource software development, software outsourcing, web design, web development, web programming, web site designweb development of portals, classifields, classifieds, events tracking, employment directory, chats, forums, bbs, guest books, counter systems, auctions, news, banners systems, e-shopweb developing, e-commerce solution, advertising, e-commerce, shopping card, e-commerce, marketing, shockwave, flash, animated site, computer graphic, graphic design, animation, video production, creative work, homepage, web design, outsourcing, offshore, web, design, wm, webmoney, merchant, credit card processing, accept credit cards, e-shop, merchant account, SSL secure server, secure, web designers, web developers, web directory, free, FREE, exposed, community, pinoy, pinay, filipino, pinas, animation, graphics, 3d, 3D, arts, literature, photography, audio &amp; video, celebrities, personalities, corporate, ecommunity, organizations, ecommerce, education, entertainment, experimental, weird, fun, humor, kids, gaming, hobbies, government, activism, health &amp; fashion, home and living, intros, media, typography, music, club scene, gigs, news, ezines, personal sites, portal, products &amp; services, religion, spirituality, retro, science, technology, sports , recreation, travel, places, web resource0My Portfolio <p>My skills could be confirmed by the portfolio containing over 55 completed projects:</p> My PortfolioMy skills could be confirmed by portfolio containing over 55 completed projects0portfolioBelgiumBelgium0DenmarkDenmark0GermanyGermany0UkraineUkraine0United KingdomUnited Kingdom0USAUSA0CyprusCyprus0IrelandIreland0IsraelIsrael0KuwaitKuwait0ThailandThailand0SwitzerlandSwitzerland0RussiaRussia0Country ListCountry List01098ActiveX Data Objects <p>Microsoft's ActiveX Data Objects (ADO) is a set of Component Object Model (COM) objects for accessing data sources. It provides a layer between programming languages and OLE DB (a means of accessing data stores, whether they be databases or otherwise, in a uniform manner). ADO allows a developer to write programs that access data without knowing how the database is implemented. You must be aware of your database for connection only. No knowledge of SQL is required to access a database when using ADO, although one can use ADO to execute arbitrary SQL commands. The disadvantage of this (i.e. using SQL directly) is that it introduces a dependency upon the type of database used.</p> <p>It is positioned as a successor to Microsoft's earlier object layers for accessing data sources, including RDO (Remote Data Objects) and DAO (Data Access Objects). ADO was introduced by Microsoft in October 1996.</p> <p>ADO is made up of four collections and twelve objects:</p> <p><strong>ADO collections</strong></p> <p><strong>Fields</strong><br /> This collection contains a set of Field objects. The Collection can be used in either a Recordset object or in a Record object. In a Recordset object, each of the Field objects that make up the Fields collection corresponds to a column in that Recordset object. In a Record object, a Field can be an absolute or relative URL that points into a tree-structured namespace (used for semi-structured data providers like the Microsoft OLE DB Provider for Internet Publishing) or as a reference to the default Stream object associated with that Record object.<br /> <br /> <strong>Properties</strong><br /> An object can have more than one Property object, which are contained in the object's Properties collection.<br /> <strong><br /> Parameters</strong><br /> A Command object can have several Parameter commands to change its predefined behaviour, and each of the Parameter objects are contained in the Command object's Parameters collection<br /> <strong><br /> Errors</strong><br /> All provider created errors are passed to a collection of Error objects, while the Errors collection itself is contained in a Connection object. When an ADO operation creates an error, the collection is cleared and a new group of Error objects are created in the collection.</p> <p><strong>ADO objects</strong></p> <p><strong>Connection</strong><br /> The connection object is ADO's connection to a data store via OLE DB. The connection object stores information about the session and provides methods of connecting to the data store. As some data stores have different methods of establishing a connection, some methods may not be supported in the connection object for particular OLE DB providers. A connection object connects to the data store using its 'Open' method with a connection string which specifies the connection as a list of key value pairs (for example: "Provider='SQLOLEDB';Data Source='TheSqlServer'; Initial Catalog='Northwind';Integrated Security='SSPI';"). The start of which must identify the type of data store connection that the connection object requires. This must be one of:</p> <p>* an OLE DB provider (for example SQLOLEDB), using the syntax "provider=";<br /> * a file name, using the syntax "file name=";<br /> * a remote provider and server (see RDS), using the syntax "Remote provider=" and "Remote server="; or<br /> * an absolute URL, using the syntax "URL="</p> <p><strong>Command</strong><br /> After the connection object establishes a session to the data source, instructions are sent to the data provider via the command object. The command object can send SQL queries directly to the provider through the use of the CommandText property, send a parameterised query or stored procedure through the use of a Parameter object or Parameters collection or run a query and return the results to a dataset object via the Execute method. There are several other methods that can be used in the Command object relating to other objects, such as the Stream, RecordSet or Connection objects.<br /> <strong><br /> Recordset</strong><br /> A recordset is a group of records, and can either come from a base table or as the result of a query to the table. The RecordSet object contains a Fields collection and a Properties collection. The Fields collection is a set of Field objects, which are the corresponding columns in the table. The Properties collection is a set of Property objects, which defines a particular functionality of an OLE DB provider. The RecordSet has numerous methods and properties for examining the data that exists within it. Records can be updated in the recordset by changing the values in the record and then calling on the Update or UpdateBatch method. Adding new records is performed through the AddNew function and then by calling on the Update or UpdateBatch method. Records are also deleted in the recordset with the Delete method and then by calling on the Update method. However, if for some reason the deletion cannot occur, such as because of violations in referential integrity, then the recordset will remain in edit mode after the call to the Update method. The programmer must explicitly call on the CancelUpdate function to cancel the update. Additionally, ADO can rollback transactions (if this is supported) and cancel batch updates. Recordsets can also be updated in one of three ways: via an immediate update, via a batch update, or through the use of transactions:<br /> <br /> <strong>Immediate</strong><br /> The recordset is locked using the adLockOptimistic or adLockPessimistic lock. The data are updated at the data source after the record is changed and the Update method is called.<br /> <br /> <strong>Batch</strong><br /> The recordset is locked using adLockBatchOptimistic and each time Update is called the data are updated in a temporary buffer. Finally, when UpdateBatch is called the data are completely updated back at the data source. This has the advantage of it all being done in memory, and if a problem occurs then UpdateCancel is called and the updates are not sent to the data source<br /> <br /> <strong>Transaction</strong><br /> If the OLE DB provider allows it, transactions can be used. To start the transaction, the programmer invokes the BeginTrans method and does the required updates. When they are all done, the programmer invokes the CommitTrans method. RollbackTrans can be invoked to cancel any changes made inside the transaction and rollback the database to the state before the transaction began<br /> <strong><br /> Record</strong><br /> This object represents one record in the database, and contains a fields collection. A RecordSet consists of a collection of Record objects.<br /> <br /> <strong>Stream<br /> </strong> A stream, mainly used in a RecordSet object, is a means of reading and writing a stream of bytes. It is mostly used to save a recordset in an XML format, to send commands to an OLE DB provider as an alternative to the CommandText object and to contain the contents of a binary or text file.<br /> <br /> <strong>Parameter</strong><br /> A parameter is a means of altering the behaviour of a common piece of functionality, for instance a stored procedure might have different parameters passed to it depending on what needs to be done; these are called parameterised commands.<br /> <br /> <strong>Field</strong><br /> Each Record object contains many fields, and a RecordSet object has a corresponding Field object also. The RecordSet object's Field object corresponds to a column in the database table that it references.<br /> <br /> <strong>Property</strong><br /> This object is specific to the OLE DB provider and defines an ability that the provider has implemented. A property object can be either a built-in property - it is a well defined property implemented by ADO already and thus cannot be altered - or can be a dynamic property - defined by the underlying data provider and can be changed<br /> <br /> <strong>Error</strong><br /> When an OLE DB provider error occurs during the use of ADO, an Error object will be created in the Errors collection. Other errors do not go into an Error object, however. For instance, any errors that occur when manipulating data in a RecordSet or Field object are stored in a Status property.</p> <p><strong>Basic Usage</strong><br /> Some basic steps are required in order to be able to access and manipulate data using ADO:</p> <p>1. Create a connection object to connect to the database.<br /> 2. Create a recordset object in order to receive data in.<br /> 3. Open the connection<br /> 4. Populate the recordset by opening it and passing the desired table name or SQL statement as a parameter to open function.<br /> 5. Do all the desired searching/processing on the fetched data.<br /> 6. Commit the changes you made to the data (if any) by using Update or UpdateBatch methods.<br /> 7. Close the recordset<br /> 8. Close the connection</p> ActiveX Data ObjectsMicrosoft's ActiveX Data Objects (ADO) is a set of Component Object Model (COM) objects for accessing data sources. It provides a layer between programming languages and OLE DB (a means of accessing data stores, whether they be databases or otherwise, in a uniform manner).ADO, ActiveX Data Objects, ADO Tutorial,ADO allows a developer to write programs that access data without knowing how the database is implemented.ActiveX Data ObjectsADO TutorialActiveX Data Objects (ADO) Component Object ModelOLE DB0ADO.NETADO.NET0ASPASP01100,1106,1110,1111,1112,1114,1244Naming Conventions <table border="0"> <tbody> <tr> <td>Control</td> <td>Prefix</td> <td>Example</td> </tr> <tr> <td>Button</td> <td>btn</td> <td>btnSave</td> </tr> <tr> <td>Calendar</td> <td>cal</td> <td>calRecordDate</td> </tr> <tr> <td>Checkbox</td> <td>chk</td> <td>chkIsActive</td> </tr> <tr> <td>Compare Validator</td> <td>cpv</td> <td>cpvPassword</td> </tr> <tr> <td>CheckBoxList</td> <td>cbl</td> <td>cblSubscription</td> </tr> <tr> <td>DataList</td> <td>dtl</td> <td>dtlProducts</td> </tr> <tr> <td>DataGrid</td> <td>dtg</td> <td>dtgArticles</td> </tr> <tr> <td>DropDownList</td> <td>ddl</td> <td>ddlStateId</td> </tr> <tr> <td>ImageButton<br /> </td> <td>imb</td> <td>imbCancel</td> </tr> <tr> <td>Image<br /> </td> <td>img</td> <td>imgOK</td> </tr> <tr> <td>ListBox</td> <td>lst</td> <td>lstCountries</td> </tr> <tr> <td>GridView</td> <td>grd</td> <td>grdCategories</td> </tr> <tr> <td>HyperLink</td> <td>hlk</td> <td>hlkEdit</td> </tr> <tr> <td>Label</td> <td>lbl</td> <td>lblProductName</td> </tr> <tr> <td>Literal</td> <td>lit</td> <td>litProduct</td> </tr> <tr> <td>Panel</td> <td>pnl</td> <td>pnlUsername</td> </tr> <tr> <td>PlaceHolder</td> <td>phd</td> <td>phdMenu</td> </tr> <tr> <td>RadioButton</td> <td>rad</td> <td>radBlue</td> </tr> <tr> <td>RadioButtonList</td> <td>rbl</td> <td>rblColor</td> </tr> <tr> <td>Regular Expression Validator</td> <td>rev</td> <td>revEmailAddress</td> </tr> <tr> <td>Repeater</td> <td>rep</td> <td>repChamber</td> </tr> <tr> <td>Required Field Validator</td> <td>rfv</td> <td>rfvChamberName</td> </tr> <tr> <td>Script Manager</td> <td>scm</td> <td>scmPage</td> </tr> <tr> <td>TextBox</td> <td>txt</td> <td>txtChamberName</td> </tr> <tr> <td>Table</td> <td>tbl</td> <td>tblServices</td> </tr> <tr> <td>Update Panel</td> <td>upn</td> <td>upnUsername</td> </tr> <tr> <td>Update Progress</td> <td>upr</td> <td>uprIndicator</td> </tr> <tr> <td>Validation Summary</td> <td>val</td> <td>valSummary</td> </tr> </tbody> </table> Naming Conventions0ASP.NETASP.NET01100ASP.NET Model View Controller (MVC) Framework <p>ASP.NET Model View Controller (MVC) Framework divides an application's implementation into three component roles:</p> <ol> <li><strong>Models</strong> are the components of the application that are responsible for maintaining state. Often this state is persisted inside a database (for example: we might have a Product class that is used to represent order data from the Products table inside SQL).</li> <li><strong>Views</strong> are the components responsible for displaying the application's user interface. Typically this UI is&nbsp;created off of the model data (for example: we might create an Product "Edit" view that surfaces textboxes, dropdowns and checkboxes based on the current state of a Product object).</li> <li><strong>Controllers</strong>&nbsp;are the components responsible for handling end user interaction, manipulating the model, and ultimately choosing a view to render to display UI.&nbsp;In a MVC application the view is only about displaying information - it is the controller that handles and responds to user input and interaction.</li> </ol> <p>One of the benefits of using a MVC methodology is that it helps enforce a clean separation of concerns between the models, views and controllers within an application.&nbsp; Maintaining a clean separation of concerns makes the testing of applications much easier, since the contract between different application components are more clearly defined and articulated.</p> <p>The MVC pattern can also help enable red/green test driven development (TDD) - where you implement automated unit tests, which define and verify the requirements of new code, first before you actually write the code itself.</p> <p>A few quick details to share in the meantime about the ASP.NET MVC framework:</p> <ul class="unIndentedList"> <li>It enables clean separation of concerns, testability, and TDD by default. All core contracts within the MVC framework are interface based and easily mockable (it includes interface based IHttpRequest/IHttpResponse intrinsics). You can unit test the application without having to run the Controllers within an ASP.NET process (making unit testing fast). You can use any unit testing framework you want to-do this testing (including NUnit, MBUnit, MS Test, etc).</li> <li>It is highly extensible and pluggable. Everything in the MVC framework is designed so that it can be easily replaced/customized (for example: you can optionally plug-in your own view engine, routing policy, parameter serialization, etc). It also supports using existing dependency injection and IOC container models (Windsor, Spring.Net, NHibernate, etc).</li> <li>It includes a very powerful URL mapping component that enables you to build applications with clean URLs. URLs do not need to have extensions within them, and are designed to easily support SEO and REST-friendly naming patterns. For example, I could easily map the /products/edit/4 URL to the "Edit" action of the ProductsController class in my project above, or map the /Blogs/scottgu/10-10-2007/SomeTopic/ URL to a "DisplayPost" action of a BlogEngineController class.</li> <li>The MVC framework supports using the existing ASP.NET .ASPX, .ASCX, and .Master markup files as "view templates" (meaning you can easily use existing ASP.NET features like nested master pages, &lt;%= %&gt; snippets, declarative server controls, templates, data-binding, localization, etc). It does not, however, use the existing post-back model for interactions back to the server. Instead, you'll route all end-user interactions to a Controller class instead - which helps ensure clean separation of concerns and testability (it also means no viewstate or page lifecycle with MVC based views).</li> <li>The ASP.NET MVC framework fully supports existing ASP.NET features like forms/windows authentication, URL authorization, membership/roles, output and data caching, session/profile state management, health monitoring, configuration system, the provider architecture, etc.</li> </ul> <p>&nbsp;</p> ASP.NET MVC0ASPMailASPMail0ApacheApache0CDOCDO0COMCOM0Composite 3.8Composite 3.80Composite C1Composite C10C#C#0CSSCSS0DHTMLDHTML0HTMLHTML0.NET 1.1.NET 1.10.NET 2.0.NET 2.00.NET 3.5.NET 3.50.NET 4.0.NET 4.00XPathXPath0VB.NETVB.NET0JavaScriptJavaScript0MS AccessMS Access0Microsoft SQL Server 7.0 <p>SQL Server version 7.0, which was released in late 1998,&nbsp;offers broad availability of solutions tailored for business operations, data warehousing, electronic commerce, and mobile computing. SQL Server 7.0 provides a comprehensive platform that makes it easy to design, build, manage, and use data warehousing solutions which enable your organization to make effective business decisions based on timely and accurate information.<br /> <br /> Microsoft's SQL Server has sold millions of copies since it was first introduced. SQL Server can run on either Windows NT (4.0 or later) or Windows 95/98. SQL Server's price/performance records have allowed many companies to have the power of an <em>RDBMS</em> (Relational Database Management System) for a fraction of the cost of just a few years ago. Microsoft continues to develop and market SQL Server, which should continue this trend for many years.</p> <p><strong>Genesis</strong><br /> The code base for MS SQL Server (prior to version 7.0) originated in Sybase SQL Server, and was Microsoft's entry to the enterprise-level database market, competing against Oracle, IBM, and, later, Sybase itself. Microsoft, Sybase and Ashton-Tate originally teamed up to create and market the first version named SQL Server 1.0 for OS/2 (about 1989) which was essentially the same as Sybase SQL Server 3.0 on Unix, VMS, etc. Microsoft SQL Server 4.2 was shipped around 1992 (available bundled with Microsoft OS/2 version 1.3). Later Microsoft SQL Server 4.21 for Windows NT was released at the same time as Windows NT 3.1. Microsoft SQL Server v6.0 was the first version designed for NT, and did not include any direction from Sybase.<br /> <br /> About the time Windows NT was released, Sybase and Microsoft parted ways and each pursued their own design and marketing schemes. Microsoft negotiated exclusive rights to all versions of SQL Server written for Microsoft operating systems. Later, Sybase changed the name of its product to Adaptive Server Enterprise to avoid confusion with Microsoft SQL Server. Until 1994, Microsoft's SQL Server carried three Sybase copyright notices as an indication of its origin.</p> <p>Since parting ways, several revisions have been done independently. SQL Server 7.0 was a rewrite from the legacy Sybase code.</p> <p><strong>The History of SQL Server<br /> </strong>IBM invented a computer language back in the 1970s designed specifically for database queries called <em>SEQUEL</em>, which stood for Structured English Query Language. Over time the language has been added to, so that it is not just a language for queries but can also be used to build databases and manage security of the database engine. IBM released <em>SEQUEL</em> into the public domain, where it became known as SQL. Because of this heritage you can pronounce it as "<em>sequel</em>" or spell it out as "S-Q-L" when talking about it. Various versions of SQL are used in today's database engines. Microsoft SQL Server uses a version called Transact-SQL.</p> <p>Microsoft initially developed SQL Server (a database product that understands the SQL language) with Sybase Corporation for use on the IBM OS/2 platform.<br /> <br /> When Microsoft and IBM split, Microsoft abandoned OS/2 in favor of its new network operating system, Windows NT Advanced Server. At that point, Microsoft decided to further develop the SQL Server engine for Windows NT by itself. The resulting product was Microsoft SQL Server 4.2, which was updated to 4.21.<br /> <br /> After Microsoft and Sybase parted ways, Sybase further developed its database engine to run on Windows NT (Sybase System 10 and now System 11), and Microsoft developed SQL Server 6.0-then SQL Server 6.5, which also ran on top of Windows NT.<br /> <br /> SQL Server 7.0 now runs on Windows NT as well as on Windows 95 and Windows 98. Although you can run SQL Server 7.0 on a Windows 9x system, you do not get all the functionality of SQL Server. When running it on the Windows 9x platform, you lose the capability to use multiple processors, Windows NT security, <em>NTFS</em> (New Technology File System) volumes, and much more. We strongly urge you to use SQL Server 7.0 on Windows NT rather than on Windows 9x. Windows NT has other advantages as well. The NT platform is designed to support multiple users. Windows 9x is not designed this way, and your SQL Server performance degrades rapidly as you add more users.</p> <p>SQL Server 7.0 is implemented as a service on either NT Workstation or NT Server (which makes it run on the server side of Windows NT) and as an application on Windows 95/98. The included utilities, such as the SQL Server Enterprise Manager, operate from the client side of Windows NT Server or NT Workstation. Of course, just like all other applications on Windows 9x, the tools run as applications.</p> <p>A <em>service</em> is an application NT can start when booting up that adds functionality to the server side of NT. Services also have a generic application programming interface (<em>API</em>) that can be controlled programmatically. Threads originating from a service are automatically given a higher priority than threads originating from an application.</p> Microsoft SQL Server 7.0SQL Server 7.0 provides a comprehensive platform that makes it easy to design, build, manage, and use data warehousing solutions which enable your organization to make effective business decisions based on timely and accurate information.Microsoft SQL Server 7.0, SQL Server 7.0, SEQUEL, Sybase, IBM, SQL, Transact-SQL, S-Q-L, Adaptive Server Enterprise, Microsoft SQL Server 4.2Microsoft SQL Server 7.0SQL Server 7.0SEQUELSQLTransact-SQLS-Q-L0Microsoft SQL Server 2000 <p>Microsoft SQL Server 2000 is a full-featured relational database management system (RDBMS) that offers a variety of administrative tools to ease the burdens of database development, maintenance and administration.</p> <p><strong>Enterprise Manager</strong> is the main administrative console for SQL Server installations. It provides you with a graphical "birds-eye" view of all of the SQL Server installations on your network. You can perform high-level administrative functions that affect one or more servers, schedule common maintenance tasks or create and modify the structure of individual databases.</p> <p><strong>Query Analyzer</strong> offers a quick and dirty method for performing queries against any of your SQL Server databases. It's a great way to quickly pull information out of a database in response to a user request, test queries before implementing them in other applications, create/modify stored procedures and execute administrative tasks.</p> <p><strong>SQL Profiler</strong> provides a window into the inner workings of your database. You can monitor many different event types and observe database performance in real time. SQL Profiler allows you to capture and replay system "traces" that log various activities. It's a great tool for optimizing databases with performance issues or troubleshooting particular problems.</p> <p><strong>Service Manager</strong> is used to control the MSSQLServer (the main SQL Server process), MSDTC (Microsoft Distributed Transaction Coordinator) and SQLServerAgent processes. An icon for this service normally resides in the system tray of machines running SQL Server. You can use Service Manager to start, stop or pause any one of these services.</p> <p><strong>Data Transformation Services (DTS)</strong> provide an extremely flexible method for importing and exporting data between a Microsoft SQL Server installation and a large variety of other formats. The most commonly used DTS application is the "Import and Export Data" wizard found in the SQL Server program group.</p> Microsoft SQL Server 2000Microsoft SQL Server 2000 is a full-featured relational database management system (RDBMS) that offers a variety of administrative tools to ease the burdens of database development, maintenance and administration.Microsoft SQL Server 2000, MS SQL 2000, RDBMS, relational database management system, Query Analyzer, SQL Profiler, Service Manager, Data Transformation Services, DTSMicrosoft SQL Server 2000MS SQL 2000RDBMSQuery AnalyzerSQL ProfilerDTS0Microsoft SQL Server 2005 <p>SQL Server 2005 (code-named "Yukon"), released in October 2005, is the successor to SQL Server 2000. It included native support for managing XML data, in addition to relational data. For this purpose, it defined an xml data type that could be used either as a data type in database columns or as literals in queries. XML columns can be associated with XSD schemas; XML data being stored is verified against the schema. XML is converted to an internal binary data type before being stored in the database. Specialized indexing methods were made available for XML data. XML data is queried using XQuery; SQL Server 2005 added some extensions to the T-SQL language to allow embedding XQuery queries in T-SQL. In addition, it also defines a new extension to XQuery, called XML DML, that allows query-based modifications to XML data.<br /> <br /> SQL Server 2005 also allows a database server to be exposed over web services using TDS packets encapsulated within SOAP (protocol) requests. When the data is accessed over web services, results are returned as XML.</p> <p>For relational data, T-SQL has been augmented with error handling features and support for recursive queries. SQL Server 2005 has also been enhanced with new indexing algorithms and better error recovery systems.<br /> <br /> Data pages are checksummed for better error resiliency, and optimistic concurrency support has been added for better performance.<br /> <br /> Permissions and access control have been made more granular and the query processor handles concurrent execution of queries in a more efficient way.<br /> <br /> Partitions on tables and indexes are supported natively, so scaling out a database onto a cluster is easier.<br /> <br /> SQL CLR was introduced with SQL Server 2005 to let it integrate with the .NET Framework.<br /> <br /> Four different editions of SQL Server 2005:<br /> <strong><br /> SQL Server 2005 Express</strong>: replaces the Microsoft Data Engine (MSDE) as the free version of SQL Server for application development and lightweight use. It remains free and retains the limitations of MSDE with respect to client connections and performance. It's a great tool for developing and testing applications and extremely small implementations, but that's about as far as you can run with it.<br /> <br /> <strong>SQL Server 2005 Workgroup</strong>: is the new entrant in the product line. It's billed as a "small business SQL Server" and it offers an impressive array of functionality for a $3,899 price tag per processor. (It's also available under a 5-user license for $739). Workgroup edition maxes out at 2 CPUs with 3GB of RAM and allows for most of the functionality you'd expect from a server-based relational database. It offers limited replication capabilities as well.<br /> &nbsp;<br /> <strong>SQL Server 2005 Standard Edition</strong> remains the staple of the product line for serious database applications. It can handle up to 4 CPUs with an unlimited amount of RAM. Standard Edition 2005 introduces database mirroring and integration services. It's priced at $5,999 for a processor or $2,799 for 5 users.<br /> <br /> <strong>SQL Server 2005 Enterprise Edition</strong>: with the release of 2005, Enterprise Edition allows unlimited scalability and partitioning. It's truly an enterprise-class database and it's hefty price tag ($24,999 per processor or $13,499 for 5 users) reflects its value.</p> Microsoft SQL Server 2005SQL Server 2005 (code-named "Yukon"), released in October 2005, is the successor to SQL Server 2000. It included native support for managing XML data, in addition to relational dataMS SQL 2005, SQL Server 2005, Microsoft SQL Server 2005, Yukon, SQL Server 2005 Express, SQL Server 2005 Workgroup, SQL Server 2005 Standard Edition, SQL Server 2005 Enterprise EditionMicrosoft SQL Server 2005YukonMS SQL 2005SQL Server 2005SQL Server Reporting ServicesSQL CLR01098,1100,1106,1110,1111,1112,1116,1117,1118,1125Microsoft SQL Server 2008 <p>SQL Server 2008 (code-named "Katmai")&nbsp;delivers on Microsoft's Data Platform vision by helping your organization manage any data, any place, any time. It enables you to store data from structured, semi-structured, and unstructured documents such as images, music, documents directly within the database.<br /> <br /> SQL Server 2008 delivers a rich set of integrated services that enable you to do more with your data such as query, search, synchronize, report and analyze.<br /> <br /> Your data can be stored and accessed in your largest servers within the Data Center all the way down to desktops and mobile devices, enabling you to have control over your data no matter where it is stored.<br /> <br /> SQL Server 2008 enables you to consume your data within custom applications developed using Microsoft® .NET and Visual Studio® and within your service-oriented architecture (SOA) and business process through Microsoft® BizTalk® Server while information workers can access data directly in the tools they use everyday such as the 2007 Microsoft® Office system.<br /> <br /> SQL Server 2008 delivers a trusted, productive and intelligent data platform for all your data needs.</p> <p><strong>SQL Server 2008 Technologies<br /> </strong>SQL Server delivers a wealth of features grouped by core technologies that enable you to easily consume and understand the breadth of capabilities available for your business.<br /> <br /> <strong>ADO.NET Data Services<br /> </strong>Microsoft ADO.NET Data Services provides a first-class infrastructure for the next wave of dynamic Internet applications by enabling Web applications to expose data as REST-based data services that can be consumed by client applications in corporate networks and across the Internet.<br /> <br /> <strong>ADO.NET Entity Framework<br /> </strong>The Microsoft ADO.NET Entity Framework is an evolutionary step in data development. It simplifies data access code in applications by enabling developers to create a customizable conceptual model for data from any source and easily map it to business requirements.<br /> <br /> <strong>Analysis Services<br /> </strong>Microsoft SQL Server 2008 helps enable organizations to build comprehensive, enterprise-scale analytic solutions that deliver actionable insights through familiar tools.<br /> <br /> <strong>Data Mining - Predictive Analytics</strong><br /> Microsoft SQL Server 2008 empowers informed decisions with predictive analytics through intuitive data mining, seamlessly integrated within the Microsoft Business Intelligence platform and extensible into business applications.<br /> <br /> <strong>High Availability - Always On</strong><br /> Microsoft SQL Server 2008 Always On Technologies provides a full range of options to minimize downtime and maintain appropriate levels of application availability.<br /> <br /> <strong>Integration Services</strong><br /> Microsoft SQL Server 2008 provides a scalable enterprise data integration platform with exceptional ETL and integration capabilities, enabling organizations to more easily manage data from a wide array of data sources.<br /> <br /> <strong>LINQ</strong><br /> LINQ is an exciting evolution in data programming that enables developers to build queries over data directly from within any .NET-based programming language. LINQ to Entities, LINQ to DataSet, LINQ to SQL, and LINQ to XML are key implementations of this powerful technology.<br /> <br /> <strong>Manageability Microsoft</strong><br /> SQL Server provides a policy-based system for managing one or more instances of SQL Server along with tools for performance monitoring, troubleshooting, and tuning that enable administrators to more efficiently manage their databases and SQL Server instances.<br /> <br /> <strong>Native Data Access<br /> </strong>Enhanced SQL Server 2008 Native Client provides a high performance, versatile data access library that enables developers to take advantage of the new capabilities of SQL Server 2008.<br /> <br /> <strong>Performance and Scale</strong><br /> Microsoft SQL Server 2008 provides a comprehensive data platform that can grow with your business. SQL Server 2008 is packed with technologies to scale-up individual servers, scale-out very large databases, and optimize performance.<br /> <br /> <strong>Reporting Services</strong><br /> Microsoft SQL Server 2008 Reporting Services provides a complete server-based platform designed to support a wide variety of reporting needs including managed, enterprise, ad-hoc, embedded, and Web-based reporting and enable organizations to deliver relevant information where needed across the entire enterprise.<br /> <br /> <strong>Security<br /> </strong>Microsoft SQL Server 2008 offers security feature enhancements that help provide effective management of security feature configuration, strong authentication and access control, powerful encryption and key management capabilities, and enhanced auditing.<br /> <br /> <strong>Spatial Data<br /> </strong>Microsoft SQL Server 2008 delivers comprehensive spatial support that enables organizations to seamlessly consume, use, and extend location-based data through spatial-enabled applications to help end users ultimately make better decisions.<br /> <br /> <strong>Sync Framework</strong><br /> The Microsoft Sync Framework is a comprehensive synchronization platform that enables collaboration and offline scenarios for applications, services, and devices. Developers can build sync ecosystems that integrate any application, any type of data, using any protocol over any network.</p> Microsoft SQL Server 2008SQL Server delivers a wealth of features grouped by core technologies that enable you to easily consume and understand the breadth of capabilities available for your business.MS SQL 2008, Microsoft SQL Server 2008, SQL Server, Microsoft Data Platform, SQL Server Analysis Services, SQL Server Reporting Services, SQL Server 2008MS SQL 2008Microsoft SQL Server 2008Microsoft Data PlatformSQL Server Analysis ServicesSQL Server Reporting ServicesSQL Server 20080MySQL - relational database management system <p>MySQL is a relational database management system (RDBMS) running as a server providing multi-user access to a number of databases.<br /> <br /> The name "MySQL" is officially pronounced /maɪˌɛskjuːˈɛl/ (My S Q L), not "My sequel" /maɪˈsiːkwəl/. This adheres to the official ANSI pronunciation; SEQUEL was an earlier IBM database language, a predecessor to the SQL language. However, the developers do not take issue with the pronunciation "My Sequel" or other local variations.<br /> <br /> MySQL is owned and sponsored by a single for-profit firm, the Swedish company MySQL AB, now a subsidiary of Sun Microsystems, which holds the copyright to most of the codebase.<br /> <br /> MySQL is popular for web applications and acts as the database component of the LAMP software stack. Its popularity for use with web applications is closely tied to the popularity of PHP, which is often combined with MySQL. Several high-traffic web sites (including Flickr, Facebook,Wikipedia, Google, Nokia and YouTube) use MySQL for its data storage and logging of user data.<br /> <br /> MySQL works on many different system platforms, including AIX, BSDi, FreeBSD, HP-UX, i5/OS, Linux, Ubuntu, Mac OS X, NetBSD, Novell NetWare, OpenBSD, OpenSolaris, eComStation, OS/2 Warp, QNX, IRIX, Solaris, Symbian, SunOS, SCO OpenServer, SCO UnixWare, Sanos, Tru64 and Microsoft Windows. A port of MySQL to OpenVMS is also available.</p> <p><strong>Libraries for accessing MySQL databases</strong> are available in all major programming languages with language-specific APIs. In addition, an ODBC interface called MyODBC allows additional programming languages that support the ODBC interface to communicate with a MySQL database, such as ASP or ColdFusion. The MySQL server and official libraries are mostly implemented in ANSI C/ANSI C++.</p> <p><strong>To administer MySQL databases</strong> one can use the included command-line tool (commands: mysql and mysqladmin). Also downloadable from the MySQL site are GUI administration tools: MySQL Administrator and MySQL Query Browser. Both of the GUI tools are now included in one package called tools/5.0.html MySQL GUI Tools.</p> <p>In addition to the above-mentioned tools developed by MySQL AB, there are several other commercial and non-commercial tools available. Examples include Navicat Free Lite Edition or SQLyog Community Edition, they are free desktop based GUI tools and phpMyAdmin, a free Web-based administration interface implemented in PHP.<br /> <br /> <strong>Features</strong><br /> MySQL offers MySQL 5.1 in two different variants: the MySQL Community Server and Enterprise Server. They have a common code base and include the following features:</p> <ol> <li>A broad subset of ANSI SQL 99, as well as extensions</li> <li>Cross-platform support</li> <li>Stored procedures</li> <li>Triggers</li> <li>Cursors</li> <li>Updatable Views</li> <li>True VARCHAR support</li> <li>INFORMATION_SCHEMA</li> <li>Strict mode</li> <li>X/Open XA distributed transaction processing (DTP) support; two phase commit as part of this, using Oracle's InnoDB engine</li> <li>Independent storage engines (MyISAM for read speed, InnoDB for transactions and referential integrity, MySQL Archive for storing historical data in little space)</li> <li>Transactions with the InnoDB, BDB and Cluster storage engines; savepoints with InnoDB</li> <li>SSL support</li> <li>Query caching</li> <li>Sub-SELECTs (i.e. nested SELECTs)</li> <li>Replication with one master per slave, many slaves per master, no automatic support for multiple masters per slave.</li> <li>Full-text indexing and searching using MyISAM engine</li> <li>Embedded database library</li> <li>Partial Unicode support (UTF-8 sequences longer than 3 bytes are not supported; UCS-2 encoded strings are also limited to the BMP)</li> <li>ACID compliance using the InnoDB, BDB and Cluster engines</li> <li>Shared-nothing clustering through MySQL Cluster</li> <li>Replication support (i.e. Master-Master Replication &amp; Master-Slave Replication)</li> </ol> <p>The MySQL Enterprise Server is released once per month and the sources can be obtained either from MySQL's customer-only Enterprise site or from MySQL's Bazaar repository, both under the GPL license.<br /> The MySQL Community Server is published on an unspecified schedule under the GPL and contains all bug fixes that were shipped with the last MySQL Enterprise Server release. Binaries are no longer provided by MySQL for every release of the Community Server.</p> <p><strong>History<br /> </strong> Milestones in MySQL development include:</p> <ol> <li>MySQL was originally developed by Michael Widenius and David Axmark beginning in 1994</li> <li>MySQL was first released internally on 23 May 1995</li> <li>Windows version was released on 8 January 1998 for Windows 95 and NT</li> <li>Version 3.23: beta from June 2000, production release January 2001</li> <li>Version 4.0: beta from August 2002, production release March 2003 (unions)</li> <li>Version 4.01: beta from August 2003, Jyoti adopts MySQL for database tracking</li> <li>Version 4.1: beta from June 2004, production release October 2004 (R-trees and B-trees, subqueries, prepared statements)</li> <li>Version 5.0: beta from March 2005, production release October 2005 (cursors, stored procedures, triggers, views, XA transactions)</li> <li>Sun Microsystems acquired MySQL AB on 26 February 2008.</li> <li>Version 5.1: production release 27 November 2008 (event scheduler, partitioning, plugin API, row-based replication, server log tables)</li> </ol> <p>&nbsp;</p> <p>&nbsp;</p> <p>&nbsp;</p> MySQL - relational database management systemMySQL is a relational database management system (RDBMS) running as a server providing multi-user access to a number of databases.MySQL, RDBMS, relational database management system, MySQL Community Server, MySQL Enterprise Server, MySQL Query Browser, MySQL Administrator, MySQL GUI Tools.relational database management systemRDBMSMySQLMySQL Community Server MySQL Enterprise ServerMySQL Query Browser01136Microsoft Search Server 2008 <p>Microsoft Search Server (MSS) is an enterprise search platform from Microsoft, based on the search capabilities of Microsoft Office SharePoint Server. MSS shares its architectural underpinnings with the Windows Search platform for both the querying engine as well as the indexer. Microsoft Search Server was once known as SharePoint Server for Search</p> <p>Microsoft Search Server has been made available as Search Server 2008, which has been released in the first half of 2008.</p> <p>A free version, Search Server Express 2008 is also available. The express edition will feature the same feature-set as the commercial edition, including no limitation on the number of files indexed; however, it is limited to a stand-alone installation and cannot be scaled out to a cluster. A release candidate of Search Server Express 2008 was made available on November 7, 2007; it is scheduled to RTM in sync with Search Server 2008.</p> <p>MSS presents a search center interface to present the UI for querying. The interface is available as a web application, accessed using a browser. The query can either be a simple query, or use advanced operators as defined by the AQS syntax. The matched files are listed along with a snippet from the file, with the search terms highlighted, sorted by relevance. The relevance determination algorithm has been developed by Microsoft Research and Windows Live Search.<br /> MSS also shows definitions of the search terms, where applicable, as well as suggests corrections for misspelled terms. Duplicate results are collapsed together. Alerts can be set for specific queries, where the user is informed of changes to the results of a query via email or RSS. The search center UI uses the ASP.NET web part infrastructure and can be customized using either Microsoft Visual Studio or Microsoft Office SharePoint Designer. Custom actions can be defined on a per-filetype basis as well.</p> <p>MSS can index any data source as long as a indexing connector for the data source is provided. The indexing connector includes protocol handlers, metadata handlers and iFilters to enumerate the data items in the source and extract metadata from the items in the data source. If the file type in the source has a corresponding iFilter, then it is used to extract the text of the file for full text indexing as well. The handlers and iFilters MSS uses are the same as used by SharePoint, Microsoft SQL Server and Windows Search as well. The data sources that are to be indexed are identified by their URIs and have to be configured prior to indexing. The indexer updates the search index as soon as an item is indexed (continuous propagation) so that the items can be queried against even before the indexing crawl is complete. MSS can also federate searches to other search services (including SharePoint and web search servers) that support the OpenSearch protocol. Federated locations can be serialized to a .fld file.</p> <p>The administration UI, which is also presented as a web application, can be used to review statistics such as most frequent queries, top destination hits, click through rates etc, as well as fine tune relevancy settings, indexing policies (including inclusion and exclusion filters) and schedules, and set up a cluster of the servers. It can also be used to back up either the configuration state or the search indices. ACLs can also be defined to limit the search result according to the rights of the user initiating the query.</p> <p>&nbsp;</p> <p>&nbsp;</p> Microsoft Search Server 2008Microsoft Search Server (MSS) is an enterprise search platform from Microsoft, based on the search capabilities of Microsoft Office SharePoint Server. Microsoft Search Server was once known as SharePoint Server for SearchMicrosoft Search Server, MSS, SharePoint Server for Search, Microsoft Search Server 2008, Microsoft Search Server, Search Server Express 2008, MSS 2008, Microsoft Search Server Express 2008Microsoft Search ServerMSSSharePoint Server for SearchSearch Server ExpressMicrosoft Search Server Express 2008Microsoft Search Server 20080SMSC Relay ActiveX SDK <p>SMSC Relay ActiveX SDK library is a set of ActiveX components enabling quick creation of applications implementing the communication with the SMSC through TCP/IP protocol. The components are created so as to give the widest range of features of the communication with the SMSC and the highest possible efficiency and simplicity of implementation. Implementation of components in ActiveX technology allows them be used in wide range of programming environments.<br /> The components are also tested and come with examples with source code for Microsoft the .NET environment (C# and Visual Basic .NET).</p> <p>The library consists of four components. Each of them implements one communication protocol. The set of functions and functionality that are made accessible by components are unified between protocols, and consequently the process of creating applications is simplified to a maximum. Multithreading implementation of components ensures achievement of maximum performance of sending and receiving messages in communication with the SMSC.</p> <p><strong>Key features<br /> </strong> Core functionality supported by SMSC Relay ActiveX SDK:</p> <ol> <li>Multithreading construction ensures maximum efficiency of the sending and receiving messages process m- existing installations of up to o 500 messages per second.</li> <li>Full support for concatenated (longer than 160 characters) messages and WAP Push.</li> <li>Receiving messages sent by users to special (short) numbers (contests, surveys, voting services etc.)</li> <li>Possibility to send and receive SMS and EMS messages, messages containing images, animations, logos, sounds etc.</li> <li>Possibility to send and receive 7-bit text messages, 8-bit data messages with binary data as well as text messages encoded in Unicode (UCS2) standard which allows to send and receive special characters and national character sets (e.g. Cyrillic, Arabic, Chinese, Korean etc.)</li> <li>Support for GSM alphabet encoding with escape sequences allowing to send and receive special characters (e.g. EURO currency symbol €)</li> <li>Full information about the message delivery status</li> <li>Support for messages containing user data header (UDH) and for encrypted messages</li> <li>Possibility to send messages in Direct Display mode (FlashSMS)</li> <li>Direct support for 0SMS ("Zero" SMS) messages (messages that are not displayed on the phone but give delivery status report thus allowing to discover if the phone is in reach).</li> <li>Possibility to set message delivery time, message validity and ability to connect as transceiver, transmiter and receiver in SMPP protocol</li> <li>Possibility to attach an alphanumeric signature to messages</li> <li>Network connection keep-alive functionality</li> <li>Designed for use in .NET environment and all environments that support COM (ActiveX), also in ASP environment</li> <li>Tested in cooperation with many SMSC configurations</li> <li>Clean and neat component design including well structured API and component methods, properties and events set</li> </ol> <p><strong>Supported protocols<br /> </strong> SMSC Relay SDK library supports 4 comminications protocols:</p> <ol> <li>SEMA OIS version 8.1 (Sema Telecoms)</li> <li>CIMD2 version 1.2 (NOKIA)</li> <li>UCP version 2 (CMG Wireless Data Solutions)</li> <li>SMPP version 3.3 and 3.4 (SMPP Developers Forum)</li> </ol> <p><strong>Library requirements<br /> </strong> SMSC Relay SDK library can be installed and can work properly when at least the following computer configuration is provided:</p> <ul> <li>Processor: Pentium II Class, 300 MHz</li> <li>Operating system: Microsoft Windows 95 (IE 5), Microsoft Windows 98, Microsoft Windows NT 4.0, Microsoft Windows 2000, Microsoft Windows XP, Microsoft Windows Server 2003</li> <li>System memory: 64 MB</li> <li>Disc space: 5 MB</li> <li>Other: CD-ROM or DVD-ROM drive (in case of version distributed on CD-ROM)</li> </ul> <p>For creating applications which use ActiveX components you need a programming environment that supports the use of COM components. Popular environments allowing work with ActiveX components are: Microsoft Visual Basic, Microsoft Visual Studio .NET, Borland Delphi, Borland C++ Builder etc. The components can also be used in environments for creating WWW applications based on ASP technology and other allowing embedding of ActiveX components.</p> <p><strong>SMSC connection requirements<br /> </strong> The library enables connection with the Short Message Service Centre through network using TCP/IP protocol. To get information about the prerequisites required concerning the connection with the Short Message Service Centre contact the GSM telephony operator.</p> <p>The library can also cooperate with independent SMSC, accessible via the Internet and with CDMA network accessible via appropriate protocol.</p> <p><strong>Sample programs</strong><br /> A set of sample programs with the full source code, created for many popular programming environments, is attached to the library. Sample programs demonstrate the use of all functions, events and properties implemented by components.</p> <p>Currently there are examples of use of the components prepared for the following environments and programming languages:</p> <ol> <li>Visual Basic 6.0 (examples for SEMA, CIMD2, UCP, SMPP)</li> <li>Visual Basic .NET (examples for SEMA, CIMD2, UCP, SMPP)</li> <li>Visual C# .NET (examples for SEMA, CIMD2, UCP, SMPP)</li> <li>ASP (examples for SEMA, CIMD2, UCP, SMPP)</li> <li>ASP .NET (examples for SEMA, CIMD2, UCP, SMPP</li> </ol> SMSC Relay ActiveX SDKSMSC Relay ActiveX SDK library is a set of ActiveX components enabling quick creation of applications implementing the communication with the SMSC through TCP/IP protocolSMSC Relay ActiveX SDK, SMSC, SMPP, SMPP ASP.NET, SEMA OIS, SMPP client library, SMPP Client for .NET, .NET SMTP Component, TOPS, SMS serverSMSC Relay ActiveX SDKSMPPSMSCSMPP client librarySMPP Client for .NET.NET SMTP Component0IISIIS0LINQLINQ0PHPPHP0Umbraco - open source CMS system <p>Umbraco is an open source CMS system based on .NET technology. Umbraco was started in Denmark in 2004 and is among the top fifteen open source .NET applications today. One of Umbraco's key features is its simple and intuitive user interface ensuring the web editor a friendly and easy to use CMS.</p> <p><strong>Integration with .NET</strong><br /> Umbraco supports both Custom and Web User Controls, which means that you can work exactly as you're used to, using any .NET language. You can insert your controls in templates, XSLT functions or even place them anywhere in the rich text editor. Umbraco can even send data to your controls via Public Properties, all with a full UI for the end user.<strong><br /> </strong></p> <p><strong>AJAX</strong><br /> Umbraco is fully Ajax compatible and support Microsoft ASP.NET Ajax right out of the box so you don't have to worry about ScriptManagers and all the other minutea. You can just enjoy the magical power of UpdatePanels, etc. And if jQuery, Prototype, MooTools or another Ajax toolkit is the hype flavour of the day, it'll work too. But our love for Ajax doesn't stop here.</p> <p>Umbraco features an easy to use framework for working with dynamic content and javascript called umbraco Base. The umbraco Base framework enables developers to create simple urls to umbraco content and .NET resources, making it much easier to work with .NET-based data directly from any javascript framework, like jQuery, YUI, Prototype or whatever library you prefer to use.</p> <p><strong>XSLT<br /> </strong>Umbraco uses XSLT for generating dynamic lists. Sometimes you need some extra power when doing XSLT. Like all the power of .NET and any of your own Business Logic. With umbraco's implementation of XSLT you have exactly that. Simply create a class library with Public Static methods and copy the dll to your installation. Then add one line to an XML configuration file and you can access your own methods directly from XSLT.<br /> <br /> <strong>Documented API</strong><br /> Umbraco comes with an extensive and well-documented API, extracted from almost two million lines of raw XML comments. That makes it possible to harness all the power from the APIs and make it possible to programmatically replicate all the exciting functionality from the UI.<br /> <br /> <strong>Event Model</strong><br /> Umbraco exposes the events in the content engine, making it possible to automate tasks based on actions that content editors make within the umbraco UI.</p> <p>Populate a 3rd party search index, generate an RSS feed or even create static html files automatically. You can easily create actions to respond to umbraco events such as Create, Publish, Delete, UnPublish, Move, Copy and more than twenty other events.</p> <p>Hooking into these events is simply a matter of creating a .NET class that implements an interface with two properties and an execute method. Once the assembly is copied into your umbraco installation, it's automatically registered and begins working immediately without even needing to modify any configuration files.</p> <p><strong>Open Source</strong><br /> The umbraco framework is open source licensed under the MIT license. This means that you can see and modify the very inner workings of umbraco.</p> <p>The MIT License is not a copy-left license. This means that you don't need to worry about all the myths in open source about being forced to give back your work. With umbraco under the MIT license you're free to do whatever you want with your amendments when you implement a site. In other words the legal perspective of implementing umbraco is super simple (the license is less than 20 lines long).</p> <p>We ship a full UI with the umbraco framework for free under a proprietary license and the full source code is also freely available for the UI. Again, this means that you have access to the very inner workings of the UI side of umbraco and can easily customize it to fit your needs.</p> <p>The irony of having full access to the source code of umbraco is that you probably won't need it. Umbraco's award-winning integration and extensibility means you can do almost anything with umbraco without having to modify the core source code, which also makes upgrades very easy.</p> <p><strong>Open and Extendable<br /> </strong>Umbraco was designed with flexibility and extensibility as a top requirement.&nbsp; Whether you want to integrate legacy applications, add advanced math operations to your XSLT or use custom 3rd party controls for editing - it not only possible to extend umbraco, but easy. And all without modifying the source.</p> <p>Some may call it magic, others call it plug-in architecture. We simply believe that it's the natural and right thing to do.</p> <p><strong>A completely open and transparent templating system, based on W3C standards</strong><br /> With umbraco you have complete freedom to craft your html any way you want, and with any tool you choose. We believe a CMS should provide a strong foundation but stay out of your way. We believe that your design - the markup - is king. We've produced a system that lets you specify how the system should treat your design, rather than the other way around.</p> <p>Do you want a content managed web site that validates as XHTML Strict? No problem. Want to use Frontpage 97 or build a table-based layout with bloated and invalid html? If you really fancy that, umbraco can handle whatever you throw at it.</p> <p>The important thing is that it's up to you, not the CMS.</p> <p><strong>Accessibility</strong><br /> Ensuring that your website is accessible is increasingly important. Not only because of Section 508 legislations but also because good accessibility leads to a better user experience for all users.</p> <p>Because of the markup freedom in templates, umbraco lets you create valid forms that properly utilize fieldsets and labels, it lets you design list-based navigation with access keys, use sIFR for beautiful and SEO-friendly headlines, alternative css or any other markup technique that prioritizes the importance of accessibility and standards-compliance while maximizing the visual design.<br /> <br /> <strong>No limits on design</strong><br /> Say goodbye to skins. Say hello to unique and compelling websites</p> <p>We believe that following web standards is the best way to build a website and that's why umbraco focuses on web standards.</p> <p>We also know how important one's existing conventions and methodology are and how much they mean to you; because they mean so much to us. That's why we built umbraco, a CMS that shows respect.</p> <p>You can build your website using your own html markup, your own css, and all the conventions and techniques you're familiar with.</p> <p>Never again will your websites all look vaguely similar because you're limited to skinning a fixed design. Umbraco gives you the flexibility, and power to set your designs free.</p> <p><strong>Super simple template engine</strong><br /> Umbraco doesn't come with yet-another-templating language or a proprietary scripting language you have to learn. Why re-invent the wheel or waste time? Umbraco works the way you do.</p> <p>Putting your design into umbraco couldn't be easier. Simply copy/paste the html from your favorite tool and insert it into umbraco's web-based template editor. Highlight your placeholders - usually the "Lorem Ipsum" text in your mockups - and click the "insert umbraco field" button. Then select the dynamic content that should be inserted when the page is rendered. Nothing could be simpler.</p> <p><strong>Add CMS support to your Flash movies in five minutes<br /> </strong>Umbraco is a perfect fit to add content management support for RIA-powered websites based on Flash or Silverlight.</p> <p>Umbraco is a master at delivering content as xml, which makes it a perfect match for delivering dynamic content to Flash, Silverlight, and other tools.</p> <p>As an example, Nibble.FX, a free add-on from our package repository, integrates umbraco content with your Flash movie. A simple xml file upload automatically creates everything you need in umbraco, and then you simply update your Flash file's actionscript to load its content from an umbraco url with dynamic content directly from your umbraco site. Change the content in umbraco and it is instantly reflected in your Flash player.</p> <p><strong>Umbraco Hosting</strong><br /> Umbraco uses a lot of XSLT, and most XSLT use extension objects. XSLT extension objects require full thrust which could be a problem at shared hosting.</p> Umbraco - open source CMS systemUmbraco is an open source CMS system based on .NET technology. Full .Net 3.5 integration, webservices, extendable XSLT, custom datatypes.Umbraco, open source CMS, CMS system based on .NET technology, umbraco packages, umbraco review, umbraco hosting, cms asp net c#, asp net ajax cms, open source content management systemopen source content management systemcustom datatypesopen source CMSumbraco reviewumbraco hostingumbraco packages0XMLXML0XSLTXSLT0XHTMLXHTML0SSLSSL0OpenX (phpAdsNew) is an open-source ad server <p>OpenX is an open-source advertising server (written in PHP and using a MySQL or PostgreSQL database) that is licensed under the GNU General Public License. It features an integrated banner management interface and tracking system for gathering statistics. The product enables web site administrators to rotate banners from both in-house advertisement campaigns as well as from paid or third-party sources, such as Google's AdSense.</p> <p>OpenX is the latest reincarnation of the product's brand, following the name OpenAds, itself following the name phpAdsNew.</p> <p><strong>History</strong><br /> OpenX began as phpAdsNew, a fork from a similar project called phpAds, created by Tobias Ratschiller in 1998. When the phpAds project came to a halt in 2000, Wim Godden decided to create phpAdsNew by expanding the project with new features. He hoped the 'New' moniker would be temporary, lasting only until Ratschiller could update the phpAds website. Unfortunately, this only happened years later, after the name phpAdsNew was too well established to be changed.</p> <p>During the time period between 2001 and 2002, Wim Godden led the phpAdsNew project and later received help from developers such as Niels Leenheer and Phil Hord, continually adding new features and improving the existing ones. After the release of version 1.9, a completely revised version 2.0 was created. This task was led by Niels Leenheer. The new version included many new features as well as a revised graphical user interface.</p> <p>After gaining in popularity and earning support from the open-source community, the project was renamed to OpenAds. Features that were built for phpAdsNew 2.0 were also integrated into the latest OpenAds software, which at this point had reached version 2.3.</p> <p>When version 2.4.4 was released in 2007, OpenAds was once again rebranded under a new name: OpenX.</p> <p><strong>Feature set<br /> </strong>OpenX provides standard banner rotation, click tracking, zone-based ad selection, zone-based campaign targeting, direct ad selection, ad targeting (per browser, domain, language, etc), ad capping and full Adobe Flash support.</p> OpenX (phpAdsNew) is an open-source ad serverOpenX (phpAdsNew) is an open-source ad server, with an integrated banner management interface and tracking system for gathering statistics. With OpenX you can easily rotate paid banners and your own in-house advertisements. phpAdsNew, OpenX, open-source ad server, banner management, banner tracking system, paid banners, banner rotation scripts, banner ad rotator, banner rotator generator, banner rotation php scriptphpAdsNewOpenXbanner rotation scriptsbanner ad rotatorbanner tracking systembanner rotation php script0NuSOAP <p>NuSOAP is a group of PHP classes that allow developers to create and consume SOAP (Simple Object Access Protocol) web services</p> NuSOAPNuSOAP is a group of PHP classes that allow developers to create and consume SOAP (Simple Object Access Protocol) web servicesNuSOAP, SOAP, PHP, web service, SOAP Server, Simple Object Access Protocol0SOAP (Simple Object Access Protocol) <p>SOAP, the Simple Object Access Protocol, is the powerhouse of web services. It's a highly adaptable, object-oriented protocol that exists in over 80 implementations on every popular platform, including .NET, JavaScript, and PHP. It provides a flexible communication layer between applications, regardless of platform and location. As long as they both speak SOAP, a PHP-based web application can ask a C++ database application on another continent to look up the price of a book and have the answer right away.</p> <p>SOAP was created collaboratively as an open protocol. Early in its development, XML-RPC was spun off, and now enjoys its own popularity as a simpler alternative to SOAP. Both encode messages as XML, and both use HTTP to transport those messages. SOAP, however, can use other transport protocols, offers a number of high-end features, and is developing rapidly.</p> <p>A SOAP transaction begins with an application making a call to a remote procedure. The SOAP client script then encodes the procedure request as an XML payload and sends it over the transport protocol to a server script. The server parses the request and passes it to a local method, which returns a response. The response is encoded as XML by the server and returned as a response to the client, which parses the response and passes the result to the original function.</p> <p>�</p> SOAPSOAP, originally defined as Simple Object Access Protocol, is a protocol specification for exchanging structured information in the implementation of Web Services in computer networks.SOAP, Simple Object Access Protocol, web service, XML, Extensible Markup Language, RPC, Remote Procedure Call0SMPP <p>The Short Message Peer-to-Peer (SMPP) protocol is a telecommunications industry protocol for exchanging SMS messages between SMS peer entities such as short message service centres. It is often used to allow third parties (e.g. value-added service providers like news organisations) to submit messages, often in bulk.</p> <p>SMPP was originally designed by Aldiscon, a small Irish company that was later acquired by Logica (now split off and known as Acision). In 1999, Logica formally handed over SMPP to the SMPP Developers Forum, later renamed as The SMS Forum and now disbanded. The SMPP protocol specifications are still available through the website which also carries a notice stating that it will be taken down at the end of 2007. As part of the original handover terms, SMPP ownership has now returned to Acision due to the disbanding of the SMS forum.</p> <p>The protocol is based on pairs of request/response PDUs (protocol data units, or packets) exchanged over OSI layer 4 (TCP session or X.25 SVC3) connections. PDUs are binary encoded for efficiency.</p> <p>The most commonly used versions of SMPP are v3.3, the most widely supported standard, and v3.4, which adds transceiver support (single connections that can send and receive messages). Data exchange may be synchronous, where each peer must wait for a response for each PDU being sent, and asynchronous, where multiple requests can be issued in one go and acknowledged in a skew order by the other peer. The latest version of SMPP is v5.0.</p> <p>�</p> The Short Message Peer-to-Peer (SMPP) protocol is a telecommunications industry protocol for exchanging SMS messages between SMS peer entities such as short message service centresShort Message, Peer-to-Peer, SMPP, SMS, GSM, SMS Forum, Logica, SMPP Developers Forum0SharePoint <p>Microsoft SharePoint products and technologies include browser-based collaboration and a document-management platform. These can be used to host web sites that access shared workspaces and documents, as well as specialized applications like wikis and blogs from a browser. Users can manipulate proprietary controls or pieces of content called web parts to create or modify sites.</p> SharePointMicrosoft SharePoint products and technologies include browser-based collaboration and a document-management platform to host web sites that access shared workspaces and documents, as well as specialized applications like wikis and blogs from a browser.0TFS (Team Foundation Server) <p>Team Foundation Server (commonly abbreviated TFS) is a Microsoft offering for source control, data collection, reporting, and project tracking, and is intended for collaborative software development projects. It is available either as stand-alone software, or as the server side back end platform for Visual Studio Team System (VSTS).</p> TFS (Team Foundation Server)Team Foundation Server (commonly abbreviated TFS) is a Microsoft offering for source control, data collection, reporting, and project tracking, and is intended for collaborative software development projects.0Adobe Flash (previously called Macromedia Flash) <p>Adobe Flash (previously called Macromedia Flash) is a multimedia platform created by Macromedia and currently developed and distributed by Adobe Systems. Since its introduction in 1996, Flash has become a popular method for adding animation and interactivity to web pages; Flash is commonly used to create animation, advertisements, and various web page components, to integrate video into web pages, and more recently, to develop rich Internet applications.</p> <p>Flash can manipulate vector and raster graphics and supports bi-directional streaming of audio and video. It contains a scripting language called ActionScript. Several software products, systems, and devices are able to create or display Flash content, including Adobe Flash Player, which is available for most common web browsers, some mobile phones and other electronic devices (using Flash Lite). The Adobe Flash Professional multimedia authoring program is used to create content for the Adobe Engagement Platform, such as web applications, games and movies, and content for mobile phones and other embedded devices.</p> <p>Files in the SWF format, traditionally called "ShockWave Flash" movies, "Flash movies" or "Flash games", usually have a .swf file extension and may be an object of a web page, strictly "played" in a standalone Flash Player, or incorporated into a Projector, a self-executing Flash movie (with the .exe extension in Microsoft Windows). Flash Video (FLV) files have a .flv file extension and are either used from within .swf files or played through a flv aware player, such as VLC, or QuickTime and Windows Media Player with external codecs added.</p> Adobe Flash (previously called Macromedia Flash)Flash is commonly used to create animation, advertisements, and various web page components, to integrate video into web pages, and more recently, to develop rich Internet applications.01136,1251Microsoft Search Server 2010 Expreess <p>For customers just getting started with search, Search Server 2010 Express is a standalone search server that is free to download and easy to deploy. It incorporates many enhancements over its predecessor, Search Server 2008 Express</p> Microsoft Search Server 2010 ExpreessSearch Server 2010 Express is a standalone search server that is free to download and easy to deploy. It incorporates many enhancements over its predecessor, Search Server 2008 ExpressMicrosoft Search Server, MSS, SharePoint Server for Search, Microsoft Search Server 2010, Microsoft Search Server, Search Server Express 2010, MSS 2010, Microsoft Search Server Express 2010, Search Server 2010 ExpressMicrosoft Search Server 2010MSS 2010 Microsoft Search Server Express 2010Search Server Express 2010Microsoft Search ServerSearch Server 2010 Express0Customer ListCustomer List01078Aeon TechnologiesAeon Technologies01084Anonymous from IsraelAnonymous from Israel01086Anonymous from ThailandAnonymous from Thailand01079Anonymous from United KingdomAnonymous from United Kingdom01080Anonymous from USAAnonymous from USA01078Albion Hotel ServiceAlbion Hotel Service01076Composite A/S <p><strong>About Composite A/S</strong><br /> Composite has been developing user-friendly Content Management Systems and e-learning software since 1999. We currently have offices in Denmark, Netherlands and Ukraine and our software is sold through a large network of Certified Solution Partners primarily throughout Europe.<br /> <br /> Composite is a Microsoft Gold Partner and takes part in the work of the Technical Adaption Program aimed at provided technically-based feedback on functionality and instruction sets for the forthcoming .NET 4.0 and Visual Studio 2010.</p> <p><strong>Our Vision</strong><br /> Our vision is to be the number one efficient internet tool worldwide. We strive to reach that vision everyday by creating software that enables you to leverage your content by providing the freedom you need to be flexible and the framework you need to work fast.</p> Composite A/SComposite has been developing user-friendly Content Management Systems and e-learning software since 1999.Composite A/S, Composite, CMS, Content Management Systems, e-learning, software01080Committee for the Preservation of 20th Century Architecture'sCommittee for the Preservation of 20th Century Architecture's01081C-KING1C-KING101082DotcyDotcy01080EleView International Inc.EleView International Inc.01084GetCom SolutionsGetCom Solutions01075Materialise NVMaterialise NV01080One BrickOne Brick01085Khazaen Venture CapitalKhazaen Venture Capital01078IMA-DATINGIMA-DATING01079Investor Ease (UK) Ltd <p>Established in 1994, Investor Ease is an indispensable database tool for stock market investors, professional and private alike. Our database has evolved into one of the largest investor resources anywhere and features a massive archive of information past and present, which can be filtered and searched at will.</p> Investor Ease (UK) Ltd01085Investors MagazineInvestors Magazine01079ShareCrazy.com LtdShareCrazy.com Ltd01079ShareData Services Limited <p>Sharedata provide a comprehensive range of financial information for equities listed on the London Stock Exchange. Additionally we supply some of the largest data resellers in the UK.</p> <p>We also offer Rule 26 Compliant Investor Relations pages which we can host and maintain for only �500 (+ vat) per annum.</p> <p>Sharedata employ expert stock market programmers and consultants, with many years of combined experience. If you are looking for financial information solutions, we can assure you of prompt consultation, with a quick and extremely competitive quote. Regardless of your operating platform, we can tailor both the data and method of delivery to suit your requirements, meaning a live solution for your company often within days.</p> ShareData Services LimitedSharedata provide a comprehensive range of financial information for equities listed on the London Stock Exchange. Additionally we supply some of the largest data resellers in the UK.Sharedata , financial information, equities, London Stock Exchange, data resellers, UK, Rule 26 Compliant, Investor Relations pages , stock market, programmers, consultants, financial information, solutions01088Shevchenko and PartnersShevchenko and Partners01085Supplying StoreSupplying Store01080SUBLETINTHECITY LLCSUBLETINTHECITY LLC01083Learning IrelandLearning Ireland01080LTCI Buyers AdvocateLTCI Buyers Advocate01087Travelwindow AGTravelwindow AG01075TenForceTenForce01078USSCUSSC01077Wellernautico GmbHWellernautico GmbH01999-01-01T00:00:002003-11-01T00:00:00Dating website development and promotion.Design, powerful admin interface (users management, orders management, email broadcastings), sign-up system, password recovery system, web mail system, mail-list system, database search system, on-line payment system, shop cart, on-line photo catalogue, orders reminder, etc... Credit cards payments integrated with MultiCards. Web site indexed in main search engines and dating directories. http://ima-dating.com11451089,1099,1102,1103,1107,1108,1109,1115,1116,1121ima-dating.comima-dating.com02000-12-01T00:00:002001-03-01T00:00:00Development of special tools for corporate website. Web mastering.Mail-list system (subscribe and admin interface), user support message board etc...In touch with marketing department provide web mastering.http://www.materialise.be11471099,1107,1108,1109,1115,1121materialise.bematerialise.be02001-03-01T00:00:002001-07-01T00:00:00Development of functionality of new corporate website. Programming and database development. Web mastering.Database software, website functionality, web site search system, forum, multi-language support system, navigation system, news-navigation system, mail-list system, prototyping technology selector, drop-down menu, manager of scrolling lines (dynamically generated JavaScript), manager of mouse-over pictures, etc... In touch with marketing department provide web mastering.http://www.materialise.com11471089,1099,1107,1108,1109,1115,1117,1121,1129materialise.commaterialise.com02001-01-05T00:00:002001-01-07T00:00:00Redesign of existing corporate web site.New design, new functionality and contents, multi-language, drop-down menu, counter and flat rating system... http://www.albion-hotel.kiev.ua11401101,1107,1108,1109,1115,1123albion-hotel.kiev.uaalbion-hotel.kiev.ua02001-12-01T00:00:002002-03-01T00:00:00Development of special tools for intranet website.Developers forum, press releases publishing system, equipment ordering form for exhibitions.http://intranet.materialise.com11471099,1107,1108,1109,1115,1117,1121intranet.materialise.comintranet.materialise.com02001-04-01T00:00:002002-07-01T00:00:00Development of on-line service for CAD file fixing. Web mastering.Functionality, upload/download system, on-line ordering system, mail system, executors project exchange system, multi-user interface system, admin(user and project management system), coordinator system, CD back-up system, auto-fixing, etc... In touch with STL-FIXING department provide web mastering.http://www.stlfix.com11471089,1099,1102,1103,1107,1108,1109,1115,1117,1121stlfix.comstlfix.com02002-05-01T00:00:002002-07-01T00:00:00Development of on-line service for translations of software products according to ISO 9001 requirements. Web mastering.Functionality, upload/download system, project exchange, multi-user interface system, admin(user and project management systems), coordinator system, CD back-up system, etc... http://translations.materialise.com11471089,1099,1102,1103,1107,1108,1109,1115,1117,1121,1129translations.materialise.comtranslations.materialise.com02002-07-01T00:00:002002-10-01T00:00:00Development of dating portal.Design, functionality, powerful admin interface (users management, photos management, email broadcastings), sign-up system, password recovery system, web mail system, powerful database search system, ordering system with on-line payments, forum, chat, message board, etc... http://www.c-king1.com11431089,1099,1102,1103,1107,1108,1109,1115,1117,1121c-king1.comc-king1.com02002-08-01T00:00:002002-10-01T00:00:00Development web site for web development studio. Promotion.Design, functionality, multilanguage support.http://aeont.com10941098,1100,1106,1107,1108,1109,1117,1121,1125aeont.comaeont.com02002-08-01T00:00:002002-10-01T00:00:00Custom control development for web developers.Editable selectbox, which integrated in Microsoft Visual Studio, so user can use this control as usual control from toolbox panel. Features: multiscript - one JavaScript for n-numbers of controls, custom properties, sql database connection, etc... .NET programming11391098,1100,1107,1108,1109,1114,1115,1117,1121vmEditCBoxvmEditCBox02002-10-01T00:00:002002-10-01T00:00:00ActiveX(COM) for data-transferingCOM object which get data from ASP and save data in special format on the server, when this binary file can be sended by email to requested address.Deplhi programming11501089,1099,1117,1121vmMA2vmMA202002-11-01T00:00:002002-11-01T00:00:00Corporate web site development.Functionality, design, content, multilanguage interface (Russian, Ukrainian, English, Spanish), etc... http://www.steel-construction.biz11621101,1107,1108,1109,1123steel-construction.bizsteel-construction.biz02002-11-01T00:00:002002-11-01T00:00:00Custom control development for web developers.Client side calendar system, which integrated in Microsoft Visual Studio, so user can use this control as usual control from toolbox panel. Features: multi-script - one JavaScript for n-numbers of controls, multilanguage, customisation starting day of the week, different date format etc....NET programming11611100,1107,1108,1109,1114,1115,1121VCorpDSFVCorpDSF02002-10-01T00:00:002002-11-01T00:00:00Custom control development for web developers.Editable selectbox, which integrated in Microsoft Visual Studio, so user can use this control as usual control from toolbox panel. Features: multiscript - one JavaScript for n-numbers of controls, custom properties, sql database connection, etc....NET programming11391098,1100,1107,1108,1109,1114,1115,1117,1121vmDualCBoxvmDualCBox02002-11-01T00:00:002003-03-01T00:00:00Development of special tools for real estate agency.Back-end and front-end solutions.http://www.subletinthecity.com11571101,1107,1108,1109,1115,1119,1123subletinthecity.comsubletinthecity.com02003-01-01T00:00:002003-01-01T00:00:00Web site development.Design, functionality and content.http://www.our20thcentury.org11421101,1107,1108,1109,1123our20thcentury.orgour20thcentury.org02003-02-01T00:00:002003-02-01T00:00:00Web site re-design.New functionality and content.http://www.savethecinema.com11421101,1107,1108,1109,1123savethecinema.comsavethecinema.com02003-02-01T00:00:002003-02-01T00:00:00Quotation wizards development.Part of a multilingual Life Insurance Quotation System (LIQS). The purpose of the (LIQS) is to enable the agents of Insurance Company to make quotations for their Insurance products over the internet. Developed 5 steps quotation wizard, which collect information about client and desired insurance parameters..NET programming11441098,1100,1107,1108,1109,1114,1117,1121QuotationWizardQuotationWizard02003-03-01T00:00:002003-03-01T00:00:00Quotation report tool development.Part of a multilingual Life Insurance Quotation System (LIQS). The purpose of the (LIQS) is to enable the agents of Insurance Company to make quotations for their Insurance products over the internet. Developed quotation report tool, which make reports about client and desired insurance plans..NET programming11441098,1100,1107,1108,1109,1114,1115,1117,1121QuotationReportQuotationReport02003-03-01T00:00:002003-03-01T00:00:00Banner management system implementation.Implementation of ad server and banner management system written in PHP (PhpAdsNew).http://learningireland.ie11581101,1107,1108,1109,1123,1132PhpAdsNewPhpAdsNew02003-03-01T00:00:002003-03-01T00:00:00Mass email system development.Mass email system with build-in Spell-Check system(a Free Spell Checker Offers free spell checking to any html form), which allow administrator send mass emails to subscribers.http://www.onebrick.org11481099,1107,1108,1109,1121vmSendMailvmSendMail02003-03-01T00:00:002003-03-01T00:00:00Simple page management system development.Simple content management system, which allow manager make page editing. Multilanguage support.http://www.steel-construction.biz11621101,1107,1108,1109,1119,1123vmNewsvmNews02003-03-01T00:00:002003-04-01T00:00:00News management system development.News system - add new news, edit existing news, hot news, scrolling news, news archive. Arabic language support.http://taloot.com11491099,1107,1108,1109,1117,1121TNewsTNews02003-03-01T00:00:002003-04-01T00:00:00Photo gallery system development.Photo gallery with photo uploading, auto re-size, navigation system, folders.http://www.onebrick.org11481099,1107,1108,1109,1117,1121vmGalleryvmGallery02003-04-01T00:00:002003-07-01T00:00:00Content management system development.Database - based content management system. Features: templates, virtual folders, navigation tree, page expiration, 3 levels of access for management and 3 levels for view, images uploading, user management, etc...product development11391099,1107,1108,1109,1119,1121CamadoraCamadora02003-04-01T00:00:002003-07-01T00:00:00Photo gallery. Features: rating system, photo editing / uploading, navigation system, stored procedures. product development.11391099,1107,1108,1109,1117,1121SteaventSteavent02003-05-01T00:00:002003-05-01T00:00:00Computers trading systemDesign, functionality and content. Show room with bestsellers, accessories, search, shop cart, order processing and delivery. Admin interface - add new items, products, categories, types, vendors, order management, photo uploading, navigation system. Russian, English and Hebrew language.http://www.getpc.co.il11461100,1106,1107,1108,1109,1117,1121GetPCGetPC02003-07-01T00:00:002005-09-01T00:00:00Bulk SMS service web site.Re-development. New ASP.NET functionality. Online bulk SMS credits trading system - automatic voucher generation and spending. Arabic, english language support.http://yakoon.com11491098,1100,1106,1107,1108,1109,1110,1111,1112,1115,1117,1118,1121,1129yakoon.comyakoon.com02003-08-01T00:00:002003-09-01T00:00:00Corporate web site of financial and industrial consulting company.Design, functionality and content.http://khazaen.com11491098,1100,1106,1107,1108,1109,1110,1111,1117,1118,1121khazaen.comkhazaen.com02003-09-01T00:00:002003-12-01T00:00:00Stock market information web site for Arabic countries with real-time data.Design, functionality and content.http://taloot.com11491098,1100,1106,1107,1108,1109,1110,1115,1117,1121taloot.comtaloot.com02003-10-01T00:00:002003-10-01T00:00:00Light content management system development (CMS).Database - based content management system. Features: virtual folders, navigation tree, page expiration, access for management and view, images uploading, user management, etc..1144aeontCMSaeontCMS02003-12-01T00:00:002005-09-01T00:00:00Bulk SMS gateway.Full circle development - analyze, planning, documentation, database/stored procedures, database components and web services development. Customer registration and account management, voucher generation system (internal money system) and management, message sending and management. Based on web services. GET, POST, SOAP support. Multilanguage support. Resellers system has been implemented. SMS Gateway is a web service written in ASP.NET that enables you to easily send SMS messages over GSM cellular telephone networks from your website or application.11491098,1100,1106,1110,1111,1117,1118,1121,1125,1134,1138Yakoon GatewayYakoon Gateway02003-12-01T00:00:002005-09-01T00:00:00Bulk SMS client software (which use developed bulk sms gateway). Design / Management /analyze / testing. Full interface for gateway functionality, skins support, Multilanguage interface, re-branding ability on-the-fly, etc... http://yakoon.com/Download-en.aspx11491131Yakoon SoftwareYakoon Software02004-01-01T00:00:002004-06-01T00:00:00Yachts trading system.Design, functionality and content for brand new online shop. Showroom with bestsellers, accessories, search. Admin interface - add new items, products, categories, types, vendors, photo uploading, navigation system. Russian, English and German languages.http://www.wellernautico.com11631098,1100,1106,1107,1108,1109,1110,1116,1121wellernautico.comwellernautico.com02004-03-01T00:00:002004-05-01T00:00:00Redesign of existing online catalogue of audio/video.New functionality and contents, customer data editing and uploading data from offline database, sales and win points statistic.http://www.supplyingstore.com11561099,1107,1108,1109,1121,1128supplyingstore.comsupplyingstore.com02004-04-01T00:00:002004-05-01T00:00:00Newsletter system development, based on dynamic template.Subscribers management, newsletter assembly and mass-sending, newsletter archive.http://www.mosgcc.com11521101,1107,1108,1109,1115,1119,1123InvestorsInvestors02004-07-01T00:00:002004-08-01T00:00:00Project management. Arabic portal.Full weight portal functionality (forum, news, articles, links, pooling, etc..)http://newkuwait.com11491089,1098,1100,1106,1107,1108,1109,1117,1121newkuwait.comnewkuwait.com02004-08-01T00:00:002005-02-01T00:00:00Customers and deals database for brokerage company.New customers registration, customers management - import, export, search. Daily transactions import/export, search. Backup function. Holding option. Sedol and price import. Graphical reports. Wide admin functionality. Strong security system.10971098,1106,1107,1108,1109,1111,1118,1121RepinRepin02005-01-01T00:00:002005-01-01T00:00:00Shop cart and ordering system for e-shop.Simple DB-based shopping cart and ordering system. Print orders. Admin and customers orders notifications.10951098,1100,1106,1107,1108,1109,1110,1117,1121HisecHisec02005-01-01T00:00:002005-02-01T00:00:00Redesign of existing corporate web site.New design, new functionality and contents, multi-language, drop-down menu, counter and flat rating system... 11401101,1107,1108,1109,1115,1119,1123ALBIONALBION02005-02-01T00:00:002005-09-01T00:00:00Rumours website for brokerage company.Everyday as market gossips and those in the know chatter, company collects share rumours for its subscribers. Current price import/export, rumours search, editing, news management, design. Automatic data updating from different sources by schedule. E-commerce integrated with PayPlay (subscriptions).10971098,1100,1106,1107,1108,1109,1118,1121SharerumoursSharerumours02005-05-01T00:00:002005-06-01T00:00:00Kuwaity Investment funds information web site.Design, functionality and content. Arabic and english languages support.http://www.kuwaitfunds.com11491098,1100,1106,1107,1108,1109,1111,1118,1121kuwaitfunds.comkuwaitfunds.com02005-06-01T00:00:002005-06-01T00:00:00Template redesign.Redesign and reprogramming of existing template. Created some new typical page templates. http://www.investalert.com10961107,1108,1109,1115,1121,1123InvestalertInvestalert02005-06-01T00:00:002005-06-01T00:00:00Website redesign.Redesign and reprogramming of existing website. New engine, design and content.http://www.investorease.com11511107,1108,1109,1115,1121,1123investorease.cominvestorease.com02005-06-01T00:00:002005-06-01T00:00:00Webservices and Graphs implementation.Data receiving system based on ASP.NET webservices and NewSoap (PHP) .http://sharecrazy.com11531100,1101,1107,1108,1109,1115,1121,1123,1125,1133,1134sharecrazy.comsharecrazy.com02005-09-01T00:00:002005-12-01T00:00:00SMPP application for sending and receiving SMS, intergated with bulk sms gateway. Send and receive SMS by SMPP protocol. Long SMS, Unicode SMS, Flash SMS. Unlimited number of SMSC support. Autologing and re-connection system. Incoming Routes System. Multi numbers support.11491098,1106,1111,1118,1120Yakoon SMPPYakoon SMPP02005-09-01T00:00:002005-10-01T00:00:00Personal home page of Jack Sherren, vocalist of Eleven Days Ago. They are from West Kent and South East London. The band writes and plays indie originals with rock and punk influences. Design, functionality and content.http://jacksherren.com10971098,1100,1106,1107,1108,1109,1111,1118,1121jacksherren.comjacksherren.com02005-09-01T00:00:002005-09-01T00:00:00Send SMS class using aspsms.comSend SMS, receive balance impormation. Routes backup system - system select another route in case if current is available. Unlimite numbers of routes. 11601100,1106,1111,1121MOBSMOBS02005-09-01T00:00:002005-10-01T00:00:00Eleven Days Ago website. They are from West Kent and South East London. The band writes and plays indie originals with rock and punk influences.Design, functionality and content.http://elevendaysago.com10971098,1100,1106,1107,1108,1109,1111,1118,1121elevendaysago.comelevendaysago.com02005-09-01T00:00:002005-10-01T00:00:00Working time tracker system.Working time tracker system.11601100,1106,1118,1121TimeTrackerTimeTracker02005-09-01T00:00:002005-10-01T00:00:00Referral system.Design, functionality and content. Long Term Care Insurance referral system. HTML entry form using PHP and SOAP to submit data to main database via ASP.NET web service. Referral reports, management, insurance advocates management, reports and invoices emailing system. 11591098,1100,1101,1106,1107,1108,1109,1111,1115,1118,1121,1123,1133,1134refgenrefgen02005-10-01T00:00:002005-10-01T00:00:00Improvements of advocates website. CEO optimization tools for webmaster. http://shev.ru11551098,1100,1106,1107,1108,1109,1111,1121shev.rushev.ru02005-12-01T00:00:002005-12-01T00:00:00Investors relation page (Information disclosed in accordance with Rule 26 of the A IM Rules for Companies).Share details page including current price information, historic price info, activities, contact details, fundamental info, full charting facilities, broker and press comments, latest RNS information, recent director dealings, balance sheet and cash flow, dividend information, recent major shareholder transactions, recent changes to share capital, director history. http://www.addworth.co.uk11541100,1101,1106,1107,1108,1109,1111,1118,1121,1123,1137addworth.co.ukaddworth.co.uk02006-02-01T00:00:002006-02-01T00:00:00Website for Ghallywood. Ghallywood’s principal objective is to support and promote the development of the Ghanaian Film Industry.Design, functionality and content, news system, students and people profiles.http://www.ghallywood.net10971100,1106,1107,1108,1109,1111,1118,1124,1125,1126ghallywood.netghallywood.net02005-02-01T00:00:002006-02-01T00:00:00This website offers access to data and research tools on UK shares.Design, functionality and content. Wide range of tool using shares data from different sources, membership system.http://www.sherren.info11541098,1100,1101,1106,1107,1108,1109,1111,1113,1115,1118,1119,1121,1123,1124,1125,1126,1127sherren.infosherren.info02006-02-01T00:00:002006-02-01T00:00:00Sharedata provide a comprehensive range of financial information for equities listed on the London Stock Exchange. Additionally they supply some of the largest data resellers in the UK. Simple corporate website. Design, functionality and content.http://sharedataservices.com11541098,1100,1106,1107,1108,1109,1111,1113,1118,1121,1124,1125,1126,1127sharedataservices.comsharedataservices.com02006-11-01T00:00:00Manage Ukrainian .NET development team for Danish company.Established company office in Kiev, Ukraine. Built a team of six professionals involved with development, document writing, testing and support. Managed daily operations and problem solving, packages development and support for Composite 3.8, Composite C1 and various projects for a company and it’s customers.http://composite.net11411089,1098,1099,1100,1244,1102,1103,1104,1105,1106,1107,1108,1109,1111,1112,1250,1113,1115,1117,1118,1233,1234,1121,1122,1125,1126,1127,1129,1134,1136,1135,1137Manager Composite UkraineManager Composite UkraineManage Ukrainian .NET development team for Danish company.Composite 3.8, Composite C1, ASP.NET 4.00Site MapSite Map0<umbraco:Macro Alias="Navigation.SiteMap" runat="server"></umbraco:Macro>404 <p>Document not found. <a href="/en.aspx" title="en">Continue</a></p> 4041