Tutorial .NET : Dos Project – very short demo

Open the book.sln solution and add a new project of type ConsoleApplication (name it  BookDos) Add reference to the BookObjects project and add an app.config file and write to this file the same as in the corresponding app.config file from BookWin application. The post build event on project – properties must be the same as […]

Continue reading →

Programming in .NET – part 9 -site map and localization

The site map is relatively easy: Add a new item – find “Site Map” and accept the default name (Web.sitemap) And put the following <?xml version=“1.0“ encoding=“utf-8“ ?> <siteMap xmlns=“http://schemas.microsoft.com/AspNet/SiteMap-File-1.0“ >   <siteMapNode url=“default.aspx“ title=“Main“  description=“First Page“>     <siteMapNode url=“frmPublisherList.aspx“ title=“All publishers“  description=“Publishers list“ >       <siteMapNode url=“frmPublisher_Insert.aspx“ title=“New Publisher“ description=“Add new“></siteMapNode>       <siteMapNode url=“frmPublisher_Edit.aspx“ […]

Continue reading →

tutorial .NET – p8 – edit in ASP.NET

  Now we will edit the Publisher objects . Add a new WebForm , name it frmPublisher_Insert.aspx and make sure the “Place code in separate file” and “Select master page” are both selected by default. Change in source view the title from “Untitled Page” to “Insert Publisher” Now we must put controls in place to […]

Continue reading →

ASP.NET application

Now, it’s time to make the ASP.NET application. I suppose that you have already installed Internet Information Services (you will find in the Administrative tools folder) . If not, please install and run aspnet_regiis.exe that you will find into <WindowsPath> \Microsoft.NET\Framework\<latest version> (my path is C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727)   Install SQL Server Express(<Address>) and WebDeveloper(<Adress>) – no […]

Continue reading →

programarea in .NET – partea a 3-a – codul pentru obiecte

Ar fi folositor sa cititi partea 1 si partea a 2-a Acum la creearea obiectelor Fiecare obiect trebuie sa aiba proprietati care corespund cimpurilor din Baza de date si , pentru usurinta, alte proprietati/metode O sa scriu codul pentru Publisher si o sa las pe celelalte ca un exercitiu pentru dvoastra. Pentru a salva/sterge/creea un […]

Continue reading →

programarea in .NET – partea a 2-a – creearea bazei de date

Programming in .NET – partea a 2-a – creearea Bazei de date Cititi mai intii <a href=”http://serviciipeweb.ro/iafblog/2006/08/10/Programarea+In+NET+Partea+1.aspx”>Programarea In NET – Partea 1 </a> Conventie : notarile si codul si comentariile or sa fie in engleza. Nu de alta -dar e limba internationala a programarii. Bun – acum ca ne-am lamurit ce vrem sa facem, hai […]

Continue reading →