DotNetShoutout - Upcoming stories (page 56)
4
Shouts

Procrustean repository

posted by slo2olsslo2ols 798 days, 1 hour, 20 minutes ago
Wednesday, March 16, 2011 8:19:44 AM GMT
We have already examined the Repository pattern. For example, here and here. Today, let's see how many examples of this pattern force a developer thinks that any repository must include concrete methods and nothing more. Often it is correct and you have pure DDD application. But what if your data source differs from database and has specific methods to modify data? (more)
category: Architecture | clicked: 0 | comment | | source: osmirnov.net
tags: Repository, .NET, Web Service, Sharepoint
2
Shouts

Advanced Dotnet Tutorial: Verify Email Online

posted by learndotnet123learndotnet123 798 days, 2 hours, 44 minutes ago
Wednesday, March 16, 2011 6:55:59 AM GMT
We had a database of hundreds of emails which were collected over years. The problem here is that some of the email exists, some do not. So while sending notifications to clients, the retuned invalid user mail messages require a lot of manual work to clear them. Our idea is to verify whether an email exists before sending the mail. Everything should be automatic and less time consuming. The Solution There were two solutions evolved explained below: Automate nslookup and SMTP commands using C#Use ... (more)
category: Web Dev | clicked: 0 | comment | | source: advanceddotnettutorial.blogspot.com
tags: email verification, .Net 4.0
2
Shouts

The rise of c# continues ...

posted by http://isenthil.myopenid.com/http://isenthil.myopenid.com/ 798 days, 15 hours, 3 minutes ago
Tuesday, March 15, 2011 6:37:20 PM GMT
Every Developer or atleast most of them feel that the language that they work is the best . But it might also happen that some developer start complaining the language / framework for some reasons and and end up saying other language might be good . (more)
category: How To | clicked: 0 | comment | | source: www.ginktage.com
tags: opinion, C#, language
2
Shouts

How Can I Detect the iPhone User Agent using ASP.NET

posted by aamirhaaamirha 798 days, 16 hours, 29 minutes ago
Tuesday, March 15, 2011 5:10:46 PM GMT
Switcher (more)
category: Web Dev | clicked: 0 | comment | | source: www.aspxtutorial.com
2
Shouts

Shivprasad Koirala: ASP.NET and .NET Interview question video :- What is Authentication and Authorization ?

posted by questpondquestpond 798 days, 19 hours, 27 minutes ago
Tuesday, March 15, 2011 2:12:49 PM GMT
Authentication is the process where we identify who the user is. (more)
category: Web Dev | clicked: 1 | comment | | source: computerauthor.blogspot.com
tags: .Net Interview Questions, Asp.net interview questions
3
Shouts

Draw Bar and Pie charts dynamically using a generic handler in a simple way

posted by deliciousdotnetdeliciousdotnet 798 days, 22 hours, 25 minutes ago
Tuesday, March 15, 2011 11:15:05 AM GMT
Hi., After 10 days., Little bit busy in my work., Here I would like to share a basic step that is drawing pie and bar charts dynamically using generic handler and a query string. Here you will see bar and pie charts with random colors. First we need to create two generic files which will plot bar and pie charts. Lets see first bar.ashx ., Just include a "Generic file" which is in Visual studio under website ->  Add New Item , Then you will see a templates window in those templates select ... (more)
category: Web Dev | clicked: 3 | comment | | source: deliciousdotnet.blogspot.com
tags: C#, generic handler, Bar Chart, Pie Chart, ASP.NET
2
Shouts

Advanced Dotnet Tutorial: E-card generator using ASP.NET 3.5

posted by learndotnet123learndotnet123 799 days, 4 hours, 54 minutes ago
Tuesday, March 15, 2011 4:46:19 AM GMT
Let us generate a simple e-card generator using ASP.NET 3.5. In this we are dividing the web page region into two half on the left there is an ordinary (more)
category: Web Dev | clicked: 25 | comment | | source: advanceddotnettutorial.blogspot.com
tags: ASP.NET 3.5, ecard generator
5
Shouts

how to store data in sqlserver from dynamically created controls

posted by taanu51taanu51 799 days, 6 hours, 11 minutes ago
Tuesday, March 15, 2011 3:28:52 AM GMT
Hi,In my previous article i am explained how to create a dynamic controls Now i would like to explain how to store the data in sqlserver from this dynamic controls and how to kept validations for this dynamic controls.. First,Open the MIcrosoft visual studio 2008 Next,Create one Asp.Net Web application Next,Open the Design page of the Default.aspx Next,Drag and Drop one Textbox and Two Buttons from the ToolBox and change the names of the buttons as AddTextBoxes and Submit Next,come to... (more)
category: Web Dev | clicked: 2 | comment | | source: taanu51.blogspot.com
tags: C#, ASPNET, SqlServer 2008, dynamically
5
Shouts

How to create a ToopTip in gridview

posted by taanu51taanu51 799 days, 6 hours, 13 minutes ago
Tuesday, March 15, 2011 3:26:37 AM GMT
Its very simple to create a tooltip in GridView First,open the Default.aspx source page where we insert the gridview Next,Just copy the following code from which you would like to display the tooltip ToolTip='<%# Bind("Desgination") %>' See the full code [code] [/code] Thats it.... Posted in: Aspnet,C# (more)
category: Web Dev | clicked: 8 | comment | | source: taanu51.blogspot.com
tags: GridView, ToolTip, ASPNET, C# .NET
5
Shouts

How to create a login page in Aspnet with sqlserver

posted by taanu51taanu51 799 days, 6 hours, 15 minutes ago
Tuesday, March 15, 2011 3:24:55 AM GMT
First we have to create a database for storing the login information Open the Sqlserver Management studio Create a new database and change the database name as db_Logininformation Create a New table in that database(dbLogininformation) and change the table name as tabuserinformation Now, create the following fields UserID   int         PrimaryKey username varchar(50) Password varchar(50) Next, Enter the some usernames and paasword directlu in the database for check... (more)
category: Web Dev | clicked: 2 | 1 comment | | source: taanu51.blogspot.com
tags: C#, authetication, ASPNET
5
Shouts

How to edit,update,delete and cancel in gridview using Aspnet

posted by taanu51taanu51 799 days, 6 hours, 16 minutes ago
Tuesday, March 15, 2011 3:23:43 AM GMT
Hi friends.. In this article i would like to explain how to create Edit,Delete,Update and Cancel buttons in gridview. First,Open the visual studio 2008 Next,select one aspnet web application and click ok Next,open the Design page of Default.aspx Next,Drag and Drop one grid view from ToolBox Next,Right click on the gridview and select properties. In the properties window,double click on the following events -->RowCancelingEdit -->RowEditing -->RowUpdating Next,come ... (more)
category: Web Dev | clicked: 10 | comment | | source: taanu51.blogspot.com
tags: GridView, C#, ASPNET
5
Shouts

How to set check availability button in registration form using aspnet

posted by taanu51taanu51 799 days, 6 hours, 17 minutes ago
Tuesday, March 15, 2011 3:23:07 AM GMT
First,open the visual studio 2008 Next,select one Asp Web Application and click ok Next download one Gif image for to show loading Next,Open the design page of Default.aspx Next,Drag and drop one UpdatePanel,one textbox from the toolbox Next,In that Updatepanel Drag and drop one Link button and label Next,add one image Next,Come to the Source page of default.aspx page Next,code will be look like this Now,come to the code page of Default.aspx.cs write the f... (more)
category: Web Dev | clicked: 3 | comment | | source: taanu51.blogspot.com
tags: As, C# .NET
5
Shouts

How to open Different pages in single hyper link

posted by taanu51taanu51 799 days, 6 hours, 18 minutes ago
Tuesday, March 15, 2011 3:22:30 AM GMT
Hi friends.just try this below code for..How to open the different pages in one hyper link first,write the onclick event in the hyper link Click here For More Sites Next write the following code in the script tag...Here you can mention number of links as per your requirement Thats it...Posted in: Aspnet,C#,JQuery (more)
category: Web Dev | clicked: 0 | comment | | source: taanu51.blogspot.com
tags: hyperlinks, C#, ASPNET
3
Shouts

Creating Maintenance Plans in SQL Server 2008 R2 | TechBubbles

posted by kalyanms1kalyanms1 799 days, 10 hours, 54 minutes ago
Monday, March 14, 2011 10:45:56 PM GMT
One of the repetitive task that DBA need to perform is create maintenance plan for database. Maintenance plans enables you to automate maintenance activities for a database, backups, db integrity checks and index maintenance tasks. We can easily create a maintenance plan using a wizard in sql server 2008 R2.   You can use the following steps to create a maintenance plan 1. Select the Maintenance Plan Wizard from the context menu  as shown below You can specify a name and description for the pl... (more)
category: Data | clicked: 3 | comment | | source: www.techbubbles.com
tags: SQL Server 2008 R2
3
Shouts

Internals of Events

posted by abhi2434abhi2434 799 days, 11 hours, 31 minutes ago
Monday, March 14, 2011 10:09:22 PM GMT
If you are looking already at my internal series, you must by now know what does an entry from Internal series means. Yes, In each of those articles, I have tried to at least give some basic idea about the usage and later tried to show you some of the internal process that is happening to achieve the technique. In this post, as the name suggest, I will show how the event system works in .NET (or rather C#) and how this system is actually achieved into the system. The Basics Event is a special obje... (more)
category: Architecture | clicked: 0 | comment | | source: www.abhisheksur.com
tags: C#, internals, MSIL, Event
2
Shouts

A pleasant surprise for Windows Phone 7 Developers

posted by http://isenthil.myopenid.com/http://isenthil.myopenid.com/ 799 days, 18 hours, 11 minutes ago
Monday, March 14, 2011 3:29:29 PM GMT
RadControls for Windows Phone 7 is a suite of controls from Telerik that offers some special controls that are not available in the Windows Phone 7 UI tool box like Gauge and transition controls . (more)
category: Metro | clicked: 0 | comment | | source: www.ginktage.com
tags: Windows Phone 7, Telerik
3
Shouts

Shivprasad Koirala: ASP.NET Interview questions :- What is the advantage of using MVC pattern?

posted by questpondquestpond 799 days, 18 hours, 58 minutes ago
Monday, March 14, 2011 2:41:44 PM GMT
MVC is one of the most used architecture pattern in ASP.NET and this is one of those ASP.NET interview question (more)
category: Web Dev | clicked: 5 | comment | | source: computerauthor.blogspot.com
tags: Asp.net interview questions
2
Shouts

C# interview question :- What is Serialization in .NET ?

posted by questpondquestpond 799 days, 19 hours ago
Monday, March 14, 2011 2:40:18 PM GMT
Serialization is a process by which we can save the state of the object by converting the object in to stream of bytes.These bytes can then be stored in database, files, memory etc. (more)
category: Web Dev | clicked: 2 | comment | | source: computerauthor.blogspot.com
tags: .Net Interview Questions
2
Shouts

Permission Module or Security Module in Asp.Net or Silverlight

posted by dotnetfundadotnetfunda 799 days, 19 hours, 28 minutes ago
Monday, March 14, 2011 2:11:46 PM GMT
I have answered more than thirty questions on the different forums about the same subject. “How to Implement a flexible security module” , well the title differs from post to post but the question is the as the answer is the same. The Following post is the trigger or the valiant to the writing of this article. (more)
category: Web Dev | clicked: 2 | 1 comment | | source: www.dotnetfunda.com
tags: Best Practices
2
Shouts

Data Driven Approach in Coded UI Test

posted by dotnetfundadotnetfunda 799 days, 19 hours, 32 minutes ago
Monday, March 14, 2011 2:07:41 PM GMT
In my previous articles, we have discussed about Coded UI basics and Object Identification Mechanism in Coded UI . In this article we will look into Data Driven approach in Coded UI. What dataSources it supports for providing the test data and how to use these datasources while working with CodedUI. (more)
category: Web Dev | clicked: 2 | comment | | source: www.dotnetfunda.com
tags: Visual Studio 10
Previous 1 2 ... 52 53 54 55 56 57 58 59 60 61 ... 168 169 Next