jch0001
Name: jch0001
Score: 5,661.13
Last Seen: 144 days, 12 hours, 28 minutes ago
Member Since: 6 February, 2009
DotNetShoutout
atom rss
2
Shouts

VSTS :- How to generate test data?

published 571 days, 16 hours, 33 minutes ago posted by questpondquestpond 573 days, 9 hours, 48 minutes ago
Saturday, November 26, 2011 4:25:17 AM GMT Thursday, November 24, 2011 11:09:44 AM GMT
During testing phase you would like to generate range of test data so that you can test your application properly. Most of the times testers end up doing monkey testing or exploratory testing. In other words they start hitting the application with various permutation and combination of data to see if the validations are appropriate. VSTS and Visual studio (more)
category: Web Dev | clicked: 24 | comment | | source: youtu.be
tags: .NET and C# trick, Visual Studio
3
Shouts

dotnetinter - .NET interview questions: - What are similarities and differences between Classes and structures?

published 571 days, 16 hours, 33 minutes ago posted by questpondquestpond 572 days, 9 hours, 5 minutes ago
Saturday, November 26, 2011 4:25:17 AM GMT Friday, November 25, 2011 11:53:14 AM GMT
In this article we will show similarities and differences between Classes and structures.For artcles and videos visit us on www.questpond.com (more)
category: Web Dev | clicked: 51 | 1 comment | | source: dotnetinter.livejournal.com
tags: .NET, .Net Interview Questions, Structures, classes
5
Shouts

Dean Hume - MVC and HTML5 Web Workers

published 559 days, 16 hours, 32 minutes ago posted by deanomachinodeanomachino 561 days, 12 hours, 26 minutes ago
Thursday, December 08, 2011 4:26:26 AM GMT Tuesday, December 06, 2011 8:32:08 AM GMT
Coding Tips & TricksHomeAboutContactCV MVC and HTML5 Web Workers Tweet HTML5 Web Workers are cool. As a developer that spends most of his time working with server side code, I like to think of Web Workers as .net's System.Threading for the front end. Basically, Web Workers allow you to run client side scripts without interrupting the page or any other scripts that are currently running. They are basically an API specification that lets you create background JavaScript threads to process... (more)
category: Web Dev | clicked: 29 | comment | | source: deanhume.com
tags: C#, Web workers, HTML 5, MVC
6
Shouts

c# :- What is difference between String(Capital S) and string(small s) ? ( Interview question)

published 545 days, 20 hours, 53 minutes ago posted by questpondquestpond 555 days, 10 hours, 15 minutes ago
Thursday, December 22, 2011 12:05:29 AM GMT Monday, December 12, 2011 10:42:51 AM GMT
What is difference between String(Capital S) and string(small s) ? :- This is a confusing interview in this video we will try to answer the same practically. .NET and C# interview questions (more)
category: Web Dev | clicked: 95 | 1 comment | | source: youtu.be
tags: .NET and C# interview questions
9
Shouts

SQL SERVER: Develop Reports with RDLC (Asp.Net)

published 559 days, 16 hours, 32 minutes ago posted by kinj312kinj312 565 days, 11 hours ago
Thursday, December 08, 2011 4:26:26 AM GMT Friday, December 02, 2011 9:58:17 AM GMT
As, I mentioned in my post, Load Reports without SQL SERVER Reporting Service with Asp.Net , we can develop a report without SQL SERVER Reporting Service. That is very simple to do with Microsoft Visual Studio. Please follow the following steps to generate... (more)
category: Web Dev | clicked: 10 | 1 comment | | source: beyondrelational.com
tags: SQL Server, RDLC, ASP.NET
4
Shouts

C# Fundamentals: Returning Zero or One Item As IEnumerable

published 556 days, 8 hours, 46 minutes ago posted by BlackRabbitCoderBlackRabbitCoder 558 days, 20 hours, 22 minutes ago
Sunday, December 11, 2011 12:12:15 PM GMT Friday, December 09, 2011 12:36:09 AM GMT
There are times when we are writing a method that returns a sequence of items, that it occasionally becomes necessary in base-class, interface implementation, error, or default conditions to return a sequence of only one or even zero items. There are many ways to do this, of course, which begs the question of which way is best, in terms of readability, maintainability, and performance. (more)
category: Web Dev | clicked: 21 | 1 comment | | source: blackrabbitcoder.net
tags: .NET, C#, fundamentals, IEnumerable, CSharp
9
Shouts

Choosing binding for WCF service

published 559 days, 16 hours, 32 minutes ago posted by kinj312kinj312 560 days, 12 hours, 4 minutes ago
Thursday, December 08, 2011 4:26:26 AM GMT Wednesday, December 07, 2011 8:53:58 AM GMT
There are different types of bindings supported by WCF. Now question is which binding is suitable for your service.Following is list of frequently used bindings in WCF: BasicHttpBinding : If clients can be non-WCF. This exposes service to the outside... (more)
category: Web Dev | clicked: 25 | 1 comment | | source: beyondrelational.com
tags: .NET, WCF, ASP.NET
5
Shouts

OWASP Top 10 for .NET developers part 9: Insufficient Transport Layer Protection

published 554 days, 6 hours, 18 minutes ago posted by http://troyhunt.myopenid.com/http://troyhunt.myopenid.com/ 555 days, 13 hours, 17 minutes ago
Tuesday, December 13, 2011 2:39:39 PM GMT Monday, December 12, 2011 7:41:07 AM GMT
When it comes to website security, the most ubiquitous indication that the site is “secure” is the presence of transport layer protection. The assurance provided by the site differs between browsers, but the message is always the same; you know who you’re talking to, you know your communication is encrypted over the network and you know it hasn’t been manipulated in transit. But unfortunately we often find sites lacking and failing to implement proper transport layer protection. Sometimes this is becaus... (more)
category: Web Dev | clicked: 29 | 1 comment | | source: www.troyhunt.com
3
Shouts

Tpl Dataflow - Part 3 - Bnaya Eshet

published 554 days, 6 hours, 18 minutes ago posted by bnayabnaya 557 days, 12 hours, 16 minutes ago
Tuesday, December 13, 2011 2:39:39 PM GMT Saturday, December 10, 2011 8:42:28 AM GMT
Tpl Dataflow - Part 3Tpl Dataflow - Part 3 the previous post discus the concept ITargetBlock which is the TDFconsumer contract. this post will focus on the source block which is the producer contract. as mention in previous post, sources and targets engage in a protocol for transferring messages between them. Source Block: the source block main responsibility is to produce (or manipulate) data which will be consume by the target. as we learn in previous post the target may consume the data either ... (more)
category: Architecture | clicked: 17 | 1 comment | | source: blogs.microsoft.co.il
tags: TPL, TDF, ISourceBlock, Dataflow, ITargetBlock
5
Shouts

Inside ASP.NET MVC: Instantiation of Controller

published 554 days, 6 hours, 18 minutes ago posted by http://www.beletsky.net/http://www.beletsky.net/ 557 days, 7 hours, 28 minutes ago
Tuesday, December 13, 2011 2:39:39 PM GMT Saturday, December 10, 2011 1:30:02 PM GMT
Controller are being created by ControllerFactory, by default IControllerFactory type is being resolved to DefaultControllerFactory. Today's post is dedicated to some details of how actually DefaultControllerFactory works and creates instance of required controller. Let's go from the beginning! Request for controller instance Initially, we are at MvcHandler's ProcessRequestInit method, where we extract controllers name from RouteData and request controller factory to create corresponding controller. p... (more)
category: Web Dev | clicked: 25 | comment | | source: www.beletsky.net
tags: ASP.NET MVC, .NET, internals
4
Shouts

.NET/ASP.NET interview questions: – What to use while design – Data grid, data list, or repeater? | dotnetinterviewquestion

published 554 days, 6 hours, 18 minutes ago posted by questpondquestpond 555 days, 10 hours, 29 minutes ago
Tuesday, December 13, 2011 2:39:39 PM GMT Monday, December 12, 2011 10:29:27 AM GMT
In this article we will show Situation to decide Data grid, data list, or repeater while we design.For more articles and videos visit us on www.questpond.com (more)
category: Web Dev | clicked: 20 | 1 comment | | source: dotnetinterviewquestion.wordpress.com
tags: .NET, .net Interview Question, Repeater, data grid, Data list, Asp.net interview questions, ASP.NET
6
Shouts

Scott Hanselman's 2011 Ultimate Developer and Power Users Tool List for Windows - Scott Hanselman

published 554 days, 6 hours, 18 minutes ago posted by iftekharahmedamitiftekharahmedamit 556 days, 8 hours, 43 minutes ago
Tuesday, December 13, 2011 2:39:39 PM GMT Sunday, December 11, 2011 12:15:08 PM GMT
Everyone collects utilities, and most folks have a list of a few that they feel are indispensable.  Here's mine.  Each has a distinct purpose, and I probably touch each at least a few times a week.  For me, "util" means utilitarian and it means don't clutter my tray.  If it saves me time, and seamlessly integrates with my life, it's the bomb. Many/most are free some aren't. Those that aren't free are very likely worth your 30-day trial, and perhaps your money. Here are most of the contents of my C:\UTIL... (more)
category: How To | clicked: 63 | 1 comment | | source: www.hanselman.com
tags: Tool, Tools, Utilities
5
Shouts

OWASP Top 10 for .NET developers part 10: Unvalidated Redirects and Forwards

published 554 days, 6 hours, 18 minutes ago posted by http://troyhunt.myopenid.com/http://troyhunt.myopenid.com/ 555 days, 13 hours, 16 minutes ago
Tuesday, December 13, 2011 2:39:39 PM GMT Monday, December 12, 2011 7:42:35 AM GMT
In the final instalment of the OWASP Top 10 for .NET developers we look at the risk of unvalidated redirects and forwards. This practice allows an attack to use a legitimate, trustworthy URL to serve malicious content which could do anything from steal credentials to install malware. But mitigation is easy and this post shows the exploit in practice and how to prevent it in your .NET apps. (more)
category: Web Dev | clicked: 25 | 1 comment | | source: www.troyhunt.com
tags: Security, OWASP
3
Shouts

Update Status with ShareStatusTask in Windows Phone

published 554 days, 6 hours, 18 minutes ago posted by http://isenthil.myopenid.com/http://isenthil.myopenid.com/ 556 days, 2 hours, 31 minutes ago
Tuesday, December 13, 2011 2:39:39 PM GMT Sunday, December 11, 2011 6:27:11 PM GMT
If you wish to share a status from your App to Facebook , Twitter or LinkedIn in Windows Phone , you can use the ShareStatusTask to achieve it . The ShareStatusTask is a launcher that enables the user to update the status message on the social networking sites on Windows Phone . (more)
category: Metro | clicked: 16 | comment | | source: windowsphonerocks.com
tags: Windows Phone, status
5
Shouts

SQL SERVER – A Quick Look at Performance – A Quick Look at Configuration « SQL Server Journey with SQLAuthority

published 554 days, 6 hours, 18 minutes ago posted by pinaldavepinaldave 554 days, 14 hours, 19 minutes ago
Tuesday, December 13, 2011 2:39:39 PM GMT Tuesday, December 13, 2011 6:39:16 AM GMT
This blog post is written in response to the T-SQL Tuesday post of Tips and Tricks. For me, this is a very interesting subject. I perfectly enjoy a discussion when it is about performance tuning. I commonly get follow-up questions regarding this subject, but most of them do not give the complete information about their environment. Whenever I get a question which does not have complete information but is obviously requesting for my help, my initial reaction is to ask more questions. When I ask more deta... (more)
category: Data | clicked: 7 | 1 comment | | source: blog.sqlauthority.com
9
Shouts

Day 76: PL/SQL - 14 (Writing Dynamic SQL Queries in PL/SQL using Native Dynamic SQL(NDS))

published 547 days, 1 hour, 26 minutes ago posted by dharadhara 554 days, 11 hours, 17 minutes ago
Tuesday, December 20, 2011 7:32:32 PM GMT Tuesday, December 13, 2011 9:41:34 AM GMT
Sign in | JoinHomeBlogsAskJust LearnedPostswhat.isnew.inPuzzlesToolsQuizModules (beta) Getting Started with SSRS - Part 6 : Creating Deleting and Moving a folder in SSRS Server First Time? You can support us by signing up. It takes only 5 seconds. Click here to sign up. If you already have an account, click here to login. niladri.biswasHomeRSS for PostsRecent Blog PostsDay 12: Math functions and operators in PostgreSQL...Day 11: Math functions and op... (more)
category: Data | clicked: 17 | 1 comment | | source: beyondrelational.com
tags: SQL Server, PL/SQl, TSQL
9
Shouts

TSQL Challenge 70 - Find the longest sequence of alphabets in a string – Part 2

published 547 days, 1 hour, 26 minutes ago posted by dharadhara 554 days, 11 hours, 18 minutes ago
Tuesday, December 20, 2011 7:32:32 PM GMT Tuesday, December 13, 2011 9:40:04 AM GMT
This challenge invites you to identify the longest sequence of alphabets from a string. This challenge is Version 2 of the TSQL Challenge 67. The difference is that in this version, you should apply circling while finding the longest sequence. (more)
category: Data | clicked: 15 | comment | | source: beyondrelational.com
tags: SQL Server, tsql challenges, TSQL
9
Shouts

Getting Started with SSRS - Part 7 - User Roles and Permissions in SSRS Server

published 547 days, 1 hour, 26 minutes ago posted by dharadhara 554 days, 11 hours, 19 minutes ago
Tuesday, December 20, 2011 7:32:32 PM GMT Tuesday, December 13, 2011 9:39:19 AM GMT
In this article, we will see how to set user access roles and permissions for a specified user in SQL Server Reporting Services. User permissions in SSRS server is a big challenge for accessing the server for specified users. In this article, we will see how to add a new user role and provide permissions for the user to access particular components of the server reports. (more)
category: Data | clicked: 13 | 1 comment | | source: beyondrelational.com
tags: SQL Server, TSQL, SSRS
10
Shouts

Day 75: PL/SQL - 13 (How to make custom Aggregate Function in Oracle)

published 554 days, 6 hours, 18 minutes ago posted by dharadhara 555 days, 12 hours, 40 minutes ago
Tuesday, December 13, 2011 2:39:39 PM GMT Monday, December 12, 2011 8:17:57 AM GMT
In this article, we will look into creating our own Aggregate Function in Oracle. User-defined aggregates are a feature of the Extensibility Framework.It is possbile to make user define Aggregate function because of Oracle's Data Cartridge model which... (more)
category: Data | clicked: 14 | comment | | source: beyondrelational.com
tags: SQL Server, PL/SQl, TSQL
13
Shouts

SQL Server – Profiler – Part 5 – Replaying a trace – from a file or a table – using breakpoints during trace replay

published 545 days, 20 hours, 53 minutes ago posted by dharadhara 555 days, 12 hours, 42 minutes ago
Thursday, December 22, 2011 12:05:29 AM GMT Monday, December 12, 2011 8:15:59 AM GMT
Based on popular demand from my colleagues and you, the kind reader, I am currently writing a series of posts on the SQL Server Profiler. Four parts have been published till date, and for your kind reference, here are the links to them: What is a SQL... (more)
category: Data | clicked: 66 | 1 comment | | source: beyondrelational.com
tags: SQL Server, TSQL
Previous 1 2 ... 5 6 7 8 9 10 11 12 13 14 ... 34 35 Next