shehmed

Stories submitted by shehmed

Test sending email on Localhost in ASP.NET: The SMTP alternative (blog(blogs.sciosoft.com)

submitted by shehmedshehmed(65) 2 years, 2 months ago

This article describes an alternative to setting up a localhost SMTP server to test email functionality of an ASP.NET project. The Specified Pickup Directory method is quick to implement, works well with multipage production code, and makes the project easily transferable to other read more...

add a comment |category: |Views: 67

tags: another

A simple way to copy value of first control to the remaining controls.(sharpcontents.blogspot.com)

submitted by shehmedshehmed(65) 2 years, 5 months ago

A very simple example to copy value of first control to the remaining controls in Repeater on clicking the control which is placed in the Header Template of Repeater. read more...

add a comment |category: |Views: 9

tags: another

How to check all checkboxes in Repeater Control? (sharpcontents.blogspot.com)

submitted by shehmedshehmed(65) 2 years, 5 months ago

The following code will demonstrate how to check all checkboxes in a Repeater control. A very simple way by using codebehind and javascript. You can download a complete example of it. read more...

add a comment |category: |Views: 86

tags: another

A simple example to measure the performance in time by using Generics.(sharpcontents.blogspot.com)

submitted by shehmedshehmed(65) 2 years, 8 months ago

A simple example to measure the performance in time by using Generics over Object type objects read more...

add a comment |category: |Views: 11

tags: another

How to show solution file of the project in the Solution explorer?(sharpcontents.blogspot.com)

submitted by shehmedshehmed(65) 3 years ago

If you are unable to view the solution file of the project in the solution explorer of the Visual Studio IDE then follow these steps to let it show always. read more...

add a comment |category: |Views: 9

tags: another

SqlConnection.ConnectionTimeout vs SqlCommand.CommandTimeout(sharpcontents.blogspot.com)

submitted by shehmedshehmed(65) 3 years ago

Do you know? What is the Difference in between of SqlConnection.ConnectionTimeout vs SqlCommand.CommandTimeout? read more...

add a comment |category: |Views: 30

tags: another

DotNet Interview Questions(sharpcontents.blogspot.com)

submitted by shehmedshehmed(65) 3 years, 4 months ago

The following collection of interview questions is my self created because these are the questions which have been asked from me wherever I go for an interview as a Software Developer (.Net) and I hope it will help you out. read more...

add a comment |category: |Views: 102

tags: another

Bubble Sort Algorithm(sharpcontents.blogspot.com)

submitted by shehmedshehmed(65) 3 years, 7 months ago

-Bubble sort is the simplest algorithm which compares two elements at a time and swaps them if they are in wrong order or if first element is greater than the second element. it repeatedly swaps elements until no swap is needed. -It is not normally used in practice except in School for the purpose of or to know how the sorting algorithm. -It is not much efficient sorting algorithm as others. -The complexity of Bubble Sort is О(n²) and it should not be used when n is large. read more...

add a comment |category: |Views: 20

tags: another

Selection Sort Algorithm(sharpcontents.blogspot.com)

submitted by shehmedshehmed(65) 3 years, 7 months ago

* Selection sort is a very simple sorting algorithm. * It starts to find out the smallest element by searching in a linear way and swap it with i place and then find the second smallest by searching from n-i elements and place it at ith place and so on. * It is improved on the performance of bubble sort. * Complexity in worst case and average case is О(n²) and the worst case is when it is in sorted order. * It should not be use when n is large. read more...

add a comment |category: |Views: 11

tags: another

Do you know which one is the first...?(sharpcontents.blogspot.com)

submitted by shehmedshehmed(65) 3 years, 7 months ago

Do you know which one is the, First OOP Language, First High Level Programming Language,First Programmer, Very first Website... read more...

add a comment |category: |Views: 7

tags: another

Highlights of Visual Studio 2010 and .Net Framework 4.0(sharpcontents.blogspot.com)

submitted by shehmedshehmed(65) 3 years, 7 months ago

Microsoft has announced to launch the Visual Studio 2010 and .Net Framework 4.0 very soon with new outstanding features that address the latest raising needs of the developers. read more...

add a comment |category: |Views: 18

tags: another