Creating PDF Documents in ASP.NET – CodeProject
Forfatter: Bo Jensen
DotNET, Webdevelopment
Base Page and User Control Classes: ASP Alliance
by Bo Jensen •
Base Page and User Control Classes: ASP Alliance
DotNET, Webdevelopment
Using Silverlight TreeView to Display BI Dimension – CodeProject
by Bo Jensen •
Using Silverlight TreeView to Display BI Dimension – CodeProject
DotNET, Webdevelopment
Replacing ASP.NET "Base Pages" with a PageAdapter: ASP Alliance
by Bo Jensen •
Replacing ASP.NET "Base Pages" with a PageAdapter: ASP Alliance
Microsoft SQL Server
How to Execute and Monitor an Agent Job Using T-SQL in SQL Server 2005/2008 | InterWorks, Inc.
by Bo Jensen •
In SQL Server 2005 and 2008 it’s possible to start an agent job with T-SQL syntax. This is frequently useful. For example, you may have a job that you’d like to have an outside application invoke. Jobs can also be used to execute SSIS packages. Using T-SQL to execute a job that runs an SSIS…
General
What is the best comment in source code you have ever encountered? – Stack Overflow
by Bo Jensen •
What is the best comment in source code you have ever encountered? – Stack Overflow
Microsoft SQL Server
Less Than Dot – Blog – The Ten Most Asked SQL Server Questions And Their Answers
by Bo Jensen •
Less Than Dot – Blog – The Ten Most Asked SQL Server Questions And Their Answers
Microsoft SQL Server
SQL Script: Search all tables for a specific field
by Bo Jensen •
DECLARE @NAME_TO_SEARCH_FOR nvarchar(50) SET @NAME_TO_SEARCH_FOR = ‘%photo%’ SELECT sysobjects.name AS Table_Name, syscolumns.name AS Column_Name FROM syscolumns INNER JOIN sysobjects ON syscolumns.id = sysobjects.id WHERE syscolumns.name LIKE @NAME_TO_SEARCH_FOR AND sysobjects.Type Like ‘U%’ SQL Script: Search all tables for a specific field
Design & Layout
50 New Useful CSS Techniques, Tutorials and Tools – Smashing Magazine
by Bo Jensen •
50 New Useful CSS Techniques, Tutorials and Tools – Smashing Magazine
Design & Layout, Accessibillity, Webdevelopment
150 best jQuery effects for web designers and developers « Web Design Blog – WebDesignShock
by Bo Jensen •
150 best jQuery effects for web designers and developers « Web Design Blog – WebDesignShock
DotNET
Calculate a Persons Age (VB.NET/ASP.NET)
by Bo Jensen •
Her er en lille metode i VB.NET, som kan beregne en persons alder i år
Microsoft Dynamics Ax
Import Items into Ax with Code – Microsoft Dynamics Community
by Bo Jensen •
This can be called to create a new item from code, for example CreateNewItem(‘AA01’);
Microsoft Dynamics Ax, Enterprise Portal
How to convert Microsoft Dynamics Ax Web form to use ASP.Net-based framework for Ax Enterprise Portal
by Bo Jensen •
MS ERPs, Dynamics Ax, AIF, X++, Sharepoint, Biztalk Server, SRS, .Net: How to convert Microsoft Dynamics Ax Web form to use ASP.Net-based framework for Ax Enterprise Portal
Enterprise Portal
How to debug x++ code for Microsoft Dynamics AX Enterprise Portal
by Bo Jensen •
How to debug x++ code for Microsoft Dynamics AX Enterprise Portal
Microsoft Dynamics Ax, Sharepoint, Enterprise Portal
How to use User Controls within .Net to develop or customize Microsoft Dynamics Ax 2009 Enterprise Portal -Part I
by Bo Jensen •
How to use User Controls within .Net to develop or customize Microsoft Dynamics Ax 2009 Enterprise Portal -Part I
Sharepoint
WebParticles: Developing and Using Web User Controls as WebParts in Microsoft Office SharePoint Server 2007 – CodeProject
by Bo Jensen •
WebParticles: Developing and Using Web User Controls as WebParts in Microsoft Office SharePoint Server 2007 – CodeProject
Microsoft Dynamics Ax
How to Create a New Role Centre in Dynamics AX 2009
by Bo Jensen •
Compiled from Dynamics Ax Developer help for quick reference. Open Dynamics Ax enterprise portal (default installation is http://servername/sites/DynamcisAx). Click on Site Action > Create . Choose Web part page (as most Ax role center using this). Complete the page creation. Open Ax client > AOT > Web > Web menu item > URLs > New…
Webdevelopment
WorldofASP.NET: Working with Drives, Directories and Files in ASP.NET | ASP.NET tutorials
by Bo Jensen •
WorldofASP.NET: Working with Drives, Directories and Files in ASP.NET | ASP.NET tutorials
Microsoft Dynamics Ax, Enterprise Portal
Displaying the Standard Ax report in EP pages of AX – Windows Live
by Bo Jensen •
Displaying the Standard Ax report in EP pages of AX – Part I Displaying the Standard Ax report in EP pages of AX – Part – II
DotNET, Security
Strip HTML tags from a string using regular expressions – ISerializable – Roy Osherove's Blog
by Bo Jensen •
Regex.Replace(textBox1.Text,@"<(.|n)*?>",string.Empty); Strip HTML tags from a string using regular expressions – ISerializable – Roy Osherove’s Blog