DotNetShoutout - Upcoming stories (page 53)
3
Shouts

Working with more then one web.config files in asp.net application.

posted by http://rajsudeep.blogspot.com/http://rajsudeep.blogspot.com/ 791 days, 40 minutes ago
Thursday, March 24, 2011 3:57:16 AM GMT
You can work with more then one web.config file in asp.net. Here how to do this. (more)
category: Web Dev | clicked: 1 | comment | | source: beyondrelational.com
tags: web.config, ASP.NET
2
Shouts

Create Div Element Dynamically using JavaScript

posted by aamirhaaamirha 791 days, 10 hours, 1 minute ago
Wednesday, March 23, 2011 6:36:11 PM GMT
Switcher (more)
category: Web Dev | clicked: 0 | comment | | source: aspxtutorial.com
2
Shouts

Using LINQ in nTier ASP.Net application with JQuery and JSON

posted by aamirhaaamirha 791 days, 10 hours, 3 minutes ago
Wednesday, March 23, 2011 6:34:43 PM GMT
Switcher (more)
category: Web Dev | clicked: 4 | comment | | source: aspxtutorial.com
2
Shouts

.NET and Java J2ee Design pattern interview question :- What is the difference between Decorator and Adapter pattern?

posted by questpondquestpond 791 days, 14 hours ago
Wednesday, March 23, 2011 2:36:50 PM GMT
Below is the main difference between these two design patterns. Decorator Design pattern (more)
category: Web Dev | clicked: 0 | comment | | source: computerauthor.blogspot.com
tags: .NET, Java J2ee
2
Shouts

.NET and Java J2ee design pattern interview question :-What is the difference between Object and class adapters?

posted by questpondquestpond 791 days, 14 hours, 3 minutes ago
Wednesday, March 23, 2011 2:34:24 PM GMT
Below are the main difference between these 2 patterns. (more)
category: Web Dev | clicked: 0 | comment | | source: computerauthor.blogspot.com
tags: .Net Interview Questions, Java J2ee
2
Shouts

B- Ball, C- Cat, D – dog: - Learning (REGEX) regular expression the easy way.

posted by dotnetfundadotnetfunda 791 days, 14 hours, 19 minutes ago
Wednesday, March 23, 2011 2:17:51 PM GMT
Regex has been the most popular and easiest way of writing validations. The only big problem with regex has been the cryptic syntax. Developers who are working on projects with complicated validation always refer some kind of cheat sheet to remember the syntaxes and commands. (more)
category: Web Dev | clicked: 0 | 2 comments | | source: www.dotnetfunda.com
tags: Regex
2
Shouts

ASP.NET MVC 2: Render a Partial View in a MasterPage or another view

posted by StopsStops 791 days, 14 hours, 44 minutes ago
Wednesday, March 23, 2011 1:53:03 PM GMT
A short description of Html.Action and Html.RenderAction. (more)
category: Web Dev | clicked: 1 | comment | | source: blog.dotnetcorner.ch
2
Shouts

blog.dotnetcorner.ch | SharePoint Sandboxed Solutions: Performance problems / unstable services

posted by StopsStops 791 days, 15 hours, 45 minutes ago
Wednesday, March 23, 2011 12:51:48 PM GMT
Do you ever had the problem that the error "The sandboxed code execution request was refused because the Sandboxed Code Host Service was too busy to handle the request." occured? The entry will show you how you can avoid such an error. (more)
category: Web Dev | clicked: 1 | comment | | source: blog.dotnetcorner.ch
tags: SharePoint 2010
2
Shouts

Working with more then one web.config files in asp.net application.

posted by http://jalpesh.blogspot.com/http://jalpesh.blogspot.com/ 791 days, 15 hours, 54 minutes ago
Wednesday, March 23, 2011 12:42:53 PM GMT
Recently one of reader of my blog how we can work with more then one web.config files in asp.net application. So I decided to blog about that. Here is the my reply for that. You can work with more then one web.config file in asp.net. But you can not put more then one web.config in each folder. Let’s first understand the hierarchy of web.config and other configuration file settings. On the top of the every configuration files you will have machine.config file which will have all system wide configuration... (more)
category: Web Dev | clicked: 1 | comment | | source: jalpesh.blogspot.com
tags: web.config, ASP.NET
2
Shouts

Advanced Dotnet Tutorial: Creating Credential Store for Form Authentication in ASP.NET 3.5

posted by learndotnet123learndotnet123 792 days, 10 minutes ago
Wednesday, March 23, 2011 4:27:39 AM GMT
When we don't want to use Windows Credentials to validate a user, we can utilize the ASP.NET infrastructure to implement our own authentication infrastructure which includes a custom login page that validates a user against credentials such as a database and later established security context on each request. ASP.NET leverages it's framework to support cookies and establishes the security context for each web request; this is called form authentication. Points to remember: Form authentication follo... (more)
category: Web Dev | clicked: 1 | comment | | source: advanceddotnettutorial.blogspot.com
tags: ASP.NET 3.5, credential storage, form authentication
3
Shouts

Sql Where In with Linq

posted by http://pranayamr.myopenid.com/http://pranayamr.myopenid.com/ 792 days, 10 hours, 24 minutes ago
Tuesday, March 22, 2011 6:13:08 PM GMT
In my current project I am using Linq To Sql ORM as my database layer for doing database operation. Now as I am moving further I got requirement to that I have to filter one table record form another table. For example I have to get list of employee which are either ProjectManger or TeamLead. Sql query to for this is select * from Employee where deptid in (select deptid from Department) To do same thing in Linq To Sql you need to use Contains() on one set of record function as you can see below Dat... (more)
category: How To | clicked: 0 | comment | | source: pranayamr.blogspot.com
tags: .NET, C#
4
Shouts

Find duplicate with Linq

posted by http://pranayamr.myopenid.com/http://pranayamr.myopenid.com/ 792 days, 10 hours, 25 minutes ago
Tuesday, March 22, 2011 6:11:46 PM GMT
In this small post I am going to discuss about how to get list of duplicate items for the collection that we do in sql. For example I have to get list of the email id which is get entered in user table more than one time. SELECT email, COUNT(email) AS NumOccurrences FROM users GROUP BY email HAVING ( COUNT(email) > 1 ) Linq query work same as on the set of collection and which make use of count DataClassesDataContext db = new DataClassesDataContext(); var duplicates = db.Users .GroupBy(i => i.... (more)
category: How To | clicked: 2 | comment | | source: pranayamr.blogspot.com
tags: .NET, C#
3
Shouts

ASP.net developers disease

posted by http://www.beletsky.net/http://www.beletsky.net/ 792 days, 13 hours, 37 minutes ago
Tuesday, March 22, 2011 3:00:33 PM GMT
We are trying to hire web developer with using of Microsoft technology stack of ASP.net/C#/WebForm/MVC etc. So, I do a lot of interviews nowadays and I found out interesting fact. I've noticed symptoms of disease many of many ASP.net guys suffer from. The people who spent a lot of time with WebForms do not really understand web. Originally WebForms has been designed in perspective to be conveniently used by Visual Basic developers. Ones who created UI in designers and put logic of application into con... (more)
category: Agile | clicked: 1 | comment | | source: www.beletsky.net
tags: ASP .NET
3
Shouts

B- Ball, C- Cat, D – dog: - Learning (REGEX) regular expression the easy way.

posted by questpondquestpond 792 days, 14 hours, 9 minutes ago
Tuesday, March 22, 2011 2:27:57 PM GMT
Regex has been the most popular and easiest way of writing validations. The only big problem with regex has been the cryptic syntax. Developers who are working on projects with complicated validation always refer some kind of cheat sheet to remember the syntaxes and commands. (more)
category: Web Dev | clicked: 1 | comment | | source: computerauthor.blogspot.com
tags: .NET, Regular Expression, Regex
3
Shouts

Backup and Restore database in ASP.NET

posted by dotnetfundadotnetfunda 793 days, 3 hours, 55 minutes ago
Tuesday, March 22, 2011 12:42:33 AM GMT
This article describes an approach to take backup and restore any database that is supported by .NET. In this article, I have taken SQL Server as an example however similar approach can be followed to backup and restore MySql, Oracle and any other databases. (more)
category: Data | clicked: 2 | comment | | source: www.dotnetfunda.com
tags: SQL Server, .NET, ASP .NET
3
Shouts

Issue with RadioButtons and Binding for MVVM

posted by abhi2434abhi2434 793 days, 6 hours, 26 minutes ago
Monday, March 21, 2011 10:10:57 PM GMT
Well, if you are working with WPF or silverlight, and in VS 2008, I think you would have definitely found this issue or will find it sooner. Most of us when dealing with WPF applications must have been using MVVM pattern where you want to completely separate the presentation layer into a View Models. Well, it would be hard to create MVP or MVVM pattern yourself in other applications, but WPF has inbuilt support of MVVM with Command interfaces and Binding.  Binding is the concept which lets you to up... (more)
category: How To | clicked: 4 | 1 comment | | source: www.abhisheksur.com
tags: WPF, MVVM
3
Shouts

Browsing Flash (.swf) files in SharePoint 2010 | TechBubbles

posted by kalyanms1kalyanms1 793 days, 7 hours, 52 minutes ago
Monday, March 21, 2011 8:45:43 PM GMT
By default SharePoint 2010 does not allow you to browse the Flash (.swf) files. In order to browse the flash files in SharePoint 2010 configure the below steps in SharePoint 2010 Central Admin. Note: By Default flash files render in SharePoint 2007 and these steps require in SharePoint2010 1. Go to SharePoint Central Admin then click on Manage web applications link Select the web application where you want to show the flash files Select General Settings on the ribbon and set the Browser Fil... (more)
category: Architecture | clicked: 1 | comment | | source: www.techbubbles.com
tags: SharePoint 2010, Sharepoint
3
Shouts

SQL Server: Understanding Output of SET STATISTICS TIME ON : Connect SQL

posted by lionofdezertlionofdezert 793 days, 8 hours, 55 minutes ago
Monday, March 21, 2011 7:41:54 PM GMT
How much time a query is taking can be best measured by setting STATISTICS TIME on, by using statement SET STATISTICS TIME ON. But how to interpret its output. (more)
category: Data | clicked: 0 | comment | | source: connectsql.blogspot.com
2
Shouts

Display the data into GridView control from XML file

posted by aamirhaaamirha 793 days, 10 hours, 30 minutes ago
Monday, March 21, 2011 6:07:41 PM GMT
Switcher (more)
category: Web Dev | clicked: 0 | comment | | source: www.aspxtutorial.com
3
Shouts

Enterprise People Search In SharePoint 2010.

posted by dotnetfundadotnetfunda 793 days, 11 hours, 40 minutes ago
Monday, March 21, 2011 4:57:04 PM GMT
In this Artical I will explain how to set up and Configure Enterprise People Search In SharePoint 2010. (more)
category: Web Dev | clicked: 1 | comment | | source: www.dotnetfunda.com
tags: SharePoint 2010
Previous 1 2 ... 49 50 51 52 53 54 55 56 57 58 ... 168 169 Next