DotNetShoutout - Upcoming stories (page 80)
2
Shouts

How to import data from an XML file to a table in SQL server 2005 or 2008 - Dot Net logiX

posted by DotNetLogixDotNetLogix 960 days, 7 hours, 41 minutes ago
Thursday, October 07, 2010 5:28:14 AM GMT
In this article I will show you how to import xml data into a table in SQL server 2005 or 2008. SQL server has strong querying capabilities to extract information from XML files. (more)
category: Web Dev | clicked: 0 | comment | | source: dotnetlogix.com
2
Shouts

How to remove html tag from string using Regex - Dot Net logiX

posted by DotNetLogixDotNetLogix 960 days, 7 hours, 42 minutes ago
Thursday, October 07, 2010 5:27:18 AM GMT
This article shows how easily we can remove html tag from string using Regular Expression (more)
category: Web Dev | clicked: 1 | comment | | source: dotnetlogix.com
2
Shouts

Upload file using web service - Dot Net logiX

posted by DotNetLogixDotNetLogix 960 days, 7 hours, 44 minutes ago
Thursday, October 07, 2010 5:25:44 AM GMT
This article is all about to uploading a file using web service. (more)
category: Web Dev | clicked: 1 | comment | | source: dotnetlogix.com
3
Shouts

List Control in Asp.Net - Dot Net logiX

posted by DotNetLogixDotNetLogix 960 days, 7 hours, 45 minutes ago
Thursday, October 07, 2010 5:24:46 AM GMT
Sometimes we need a lookup (dropdown) from where we can select multiple items. For example, an employee can work on a multiple projects at time and if I would have asked to use DropDownList to show multiple projects, I can’t do so. But this can be possible with ListBox control. (more)
category: Web Dev | clicked: 0 | comment | | source: dotnetlogix.com
2
Shouts

How to get the online Users Count in ASP.NET - Dot Net logiX

posted by DotNetLogixDotNetLogix 960 days, 7 hours, 46 minutes ago
Thursday, October 07, 2010 5:23:14 AM GMT
Today I wish to get the how many users in online codegain.com, base on that idea, I come cross to a simple and easy solution to implement this. (more)
category: Web Dev | clicked: 0 | comment | | source: dotnetlogix.com
2
Shouts

Hypnotized Developer: Microsoft.SharePoint.SPException : "Cannot complete this action.\n\nPlease try again."

posted by http://avikercode.blogspot.com/http://avikercode.blogspot.com/ 960 days, 16 hours, 44 minutes ago
Wednesday, October 06, 2010 8:25:04 PM GMT
Today I got the "Cannot complete this action.\n\nPlease try again." exception when trying to save data in a Document Library. The full exception is: Microsoft.SharePoint.SPException was caught Message="Cannot complete this action.\n\nPlease try again." Source="Microsoft.SharePoint" ErrorCode=-2147467259 StackTrace: at Microsoft.SharePoint.Library.SPRequest.GetListItemDataWithCallback(String bstrUrl, String bstrListName, String bstrViewName, String bstrViewXml, SAFEARRAYFLAGS fSafeA... (more)
category: Web Dev | clicked: 8 | comment | | source: avikercode.blogspot.com
tags: WSS 3.0, Microsoft.SharePoint.SPException, Sharepoint, MOSS 2007
2
Shouts

Hypnotized Developer: How to get detailed COM Exception error message coming in SP2, MOSS 2007

posted by http://avikercode.blogspot.com/http://avikercode.blogspot.com/ 960 days, 16 hours, 45 minutes ago
Wednesday, October 06, 2010 8:24:06 PM GMT
To get detailed COM Exception error message in SP2, MOSS 2007, you need to implement the following application error handler that writes it to the browser screen (Otherwise, we can only see the detailed error message in the server application log recorded as a warning) : protected void Application_Error(object sender, EventArgs e) { Exception ex = Server.GetLastError().GetBaseException(); System.Web.HttpContext.Current.Response.Write( "MESSAGE: " + ex.Message + "SOURCE: " + ex.Sou... (more)
category: Web Dev | clicked: 0 | comment | | source: avikercode.blogspot.com
tags: WSS 3.0, Sharepoint, COM Exception, MOSS 2007
2
Shouts

Hypnotized Developer: "Invalid text value. A text field contains invalid data. Please check the value and try again."

posted by http://avikercode.blogspot.com/http://avikercode.blogspot.com/ 960 days, 16 hours, 46 minutes ago
Wednesday, October 06, 2010 8:22:53 PM GMT
You may get the following exception when calling the Update method of the SPListItem class: Microsoft.SharePoint.SPException was caught Message="Invalid text value\n\nA text field contains invalid data. Please check the value and try again." Source="Microsoft.SharePoint" ErrorCode=-2130575336 StackTrace: at Microsoft.SharePoint.Library.SPRequest.AddOrUpdateItem(String bstrUrl, String bstrListName, Boolean bAdd, Boolean bSystemUpdate, Boolean bPreserveItemVersion, Boolean bUpdateNoV... (more)
category: Web Dev | clicked: 61 | comment | | source: avikercode.blogspot.com
tags: WSS 3.0, ErrorCode=-2130575336, Sharepoint, MOSS 2007
2
Shouts

Hypnotized Developer: Shrinking SharePoint Log Files

posted by http://avikercode.blogspot.com/http://avikercode.blogspot.com/ 960 days, 16 hours, 49 minutes ago
Wednesday, October 06, 2010 8:20:05 PM GMT
Many times the log files generated in an application takes considerable amount of disk space. To recover some storage area you need to run the following script inside concerned database's editor: BACKUP LOG [MOSSContent11000DE-DEV-MOSS] WITH TRUNCATEONLY GO DBCC SHRINKFILE (2,1, TRUNCATEONLY)GO (more)
category: Data | clicked: 0 | comment | | source: avikercode.blogspot.com
tags: WSS 3.0, Sharepoint, Logs, MOSS 2007
2
Shouts

Hypnotized Developer: .Net Framework 4.0 – New Entries

posted by http://avikercode.blogspot.com/http://avikercode.blogspot.com/ 960 days, 16 hours, 51 minutes ago
Wednesday, October 06, 2010 8:18:43 PM GMT
It seems I am posting after so many days!!! I have just started playing with VS 2010 and started to find out so many cool inclusions. Here are few of them… I will keep rolling this post – anybody wants to add to the ever growing list is most welcome… J .Net 4.0 Newbie => SortedSet and StringBuilder.Clear()Here comes our sorted list: 1 2 3 4 5 6 7 8 9 .Net 4.0 Newbie => String.IsNullOrWhiteSpace(param)New method has discoverd WhiteSpace in param.Net 4.0 Newbie => Stopwatch.Restart()Elapsed Time i... (more)
category: Web Dev | clicked: 0 | comment | | source: avikercode.blogspot.com
tags: .Net 4.0
2
Shouts

Hypnotized Developer: Free Tool to Copy/Extract dll from GAC

posted by http://avikercode.blogspot.com/http://avikercode.blogspot.com/ 960 days, 16 hours, 52 minutes ago
Wednesday, October 06, 2010 8:17:45 PM GMT
When you are in the middle of the UAT to Production - Solution Deployment Phase, many times you will like to take a back up copy of the assemblies that are all ready deployed and are in GAC for back up purpose. Yesterday I found a very useful tool - GAC Extractor, it has started saving lot of my command prompt related times to copy Dll's from the GAC. The tool is available for download from the following location: Click here to download Free GAC Extractor Tool (more)
category: Web Dev | clicked: 3 | comment | | source: avikercode.blogspot.com
tags: WSS 3.0, Tool, assembly, GAC, Sharepoint, MOSS 2007
2
Shouts

Hypnotized Developer: Steps to follow when upgrading SharePoint 2007 Server Farm from SP1 to SP2

posted by http://avikercode.blogspot.com/http://avikercode.blogspot.com/ 960 days, 16 hours, 53 minutes ago
Wednesday, October 06, 2010 8:16:22 PM GMT
A few days back we started the upgradtion process of one of our clients SharePoint 2007 server farm from Service Pack 1 to Service Pack 2. After studiyng a lot, discussing with Microsoft Support Team, we have summarized the steps and best practices that needed to be followed and they are listed below: FULL SQL Backup for all SharePoint related DBs (from SQL server -> management studio->Databases->backup) Run PREPARETOMOVE stsadm command on all content DB http://technet.microsoft.com/en-us/... (more)
category: Web Dev | clicked: 1 | comment | | source: avikercode.blogspot.com
tags: SP Service Pack 1, WSS 3.0, Service Pack, SP Service Pack 2, Sharepoint, MOSS 2007
2
Shouts

Hypnotized Developer: Analyzing .Net Assemblies with NDepend

posted by http://avikercode.blogspot.com/http://avikercode.blogspot.com/ 960 days, 16 hours, 55 minutes ago
Wednesday, October 06, 2010 8:14:17 PM GMT
“NDepend is a Visual Studio tool to manage complex .NET code and achieve high Code Quality. With NDepend, software quality can be measured using Code Metrics, visualized using Graphs and Treemaps, and enforced using standard and custom Rules.” – When I visited their site for the first time, I thought it must be just another tool in the market. But, today after using it for a test run, I must say ‘This is THE TOOL in the market’ to what they called ‘Make your .NET Code Beautiful’. Today I am going to w... (more)
category: Web Dev | clicked: 1 | comment | | source: avikercode.blogspot.com
tags: NDepend, Code Review, assembly
2
Shouts

How to stream media files in SharePoint Blog Sites created with CKS:EBE

posted by http://avikercode.blogspot.com/http://avikercode.blogspot.com/ 960 days, 16 hours, 57 minutes ago
Wednesday, October 06, 2010 8:12:09 PM GMT
My last project was to create a few blogs in SharePoint 2007 platform for an USA based fashion house. Those blogs are different from the normal blogs – the main contents of the blogs are images and videos. In an average, each post consists of min 8 pictures, min 1 video and 1 or 2 single line of text. To provide them cost effective, rapidly developed, stunning UI based blog sites, we have used mainly 3 components -SharePoint Blog SitesThe Community Kit for SharePoint: Enhanced Blog Edition (V 2.0) andF... (more)
category: Web Dev | clicked: 0 | 1 comment | | source: avikercode.blogspot.com
tags: SharePoint 2007, WSS 3.0, Sharepoint, MOSS 2007
3
Shouts

Hello VB

posted by mikeukmikeuk 961 days, 54 minutes ago
Wednesday, October 06, 2010 12:15:21 PM GMT
If you have always wanted to learn to program then why not give Visual Basic 2010 a try? You don't have to buy anything and you can get started with just a machine that runs Windows XP or later and our new series on Mastering VB. (more)
category: How To | clicked: 0 | comment | | source: www.i-programmer.info
tags: Visual Basic 2010
6
Shouts

Different Ways to Bind Data Grid in Silverlight - Dinesh's Blog

posted by dharadhara 962 days, 6 hours, 40 minutes ago
Tuesday, October 05, 2010 6:29:35 AM GMT
In the previous article I described the basics of Data Binding in Silverlight. In this article I will demonstrate How to Bind Data grid with different data sources like: Binding with Static Collection/List Binding with XML Binding with Database via WCF... (more)
category: Web Dev | clicked: 0 | comment | | source: beyondrelational.com
tags: .NET, Silvelight, ASP.NET
4
Shouts

A More Fluent API For AutoMapper

posted by Matt_TCFMatt_TCF 962 days, 11 hours, 42 minutes ago
Tuesday, October 05, 2010 1:27:30 AM GMT
I love AutoMapper. I’ve used it in virtually every ASP.NET MVC application I’ve ever worked on. It has saved me countless lines of tedious code, and it’s quite smart at inferring the correct mappings. However, my one complaint is that the API for specifying the more complicated mappings is, in a word, ugly. It’s flexible, sure, but ugly. In this post, I’ll show you how a few simple extension methods that can make things much prettier. (more)
category: Web Dev | clicked: 10 | comment | | source: trycatchfail.com
tags: ASP.NET MVC, Extension Methods, AutoMapper
2
Shouts

.NET Links of the Week #39

posted by http://baldi.myopenid.com/http://baldi.myopenid.com/ 962 days, 18 hours, 8 minutes ago
Monday, October 04, 2010 7:01:00 PM GMT
Last week a lot of Windows Phone 7 tutorials were published (if you are interested in WP7 dev, don't miss the developer launch webcast). There were also some good articles from the MSDN Magazine in my weekly list. Enjoy reading! (more)
category: How To | clicked: 0 | comment | | source: www.mbaldinger.com
tags: news, linklist
2
Shouts

How to create your own control library (how-to + tips)

posted by jmix90jmix90 962 days, 21 hours, 28 minutes ago
Monday, October 04, 2010 3:41:33 PM GMT
Reusability and factorizing are maybe the most commons things you want and use when you are developing applications. In WPF it often means creating controls library (i don’t mean UserControl) that will be easy to use in multiple applications. In this post we'll see all the step to create a control library useable in differents projects. (more)
category: How To | clicked: 7 | comment | | source: blog.lexique-du-net.com
tags: library, Resources, Control, How-To, Test, WPF, Tests, custom, windows presentation foundation, resource, How, Tips, ContentControl, controls
2
Shouts

User defined stored procedure should not be Prefixed with

posted by dotnetfundadotnetfunda 962 days, 21 hours, 41 minutes ago
Monday, October 04, 2010 3:28:29 PM GMT
According to Microsoft best practice, User defined stored procedures should not be started with 'SP_'. The reasone is... (more)
category: Data | clicked: 1 | comment | | source: www.dotnetfunda.com
tags: SQLServer
Previous 1 2 ... 76 77 78 79 80 81 82 83 84 85 ... 168 169 Next