DotNetShoutout - Stories tagged with .NET
6
Shouts

Checking whether page is secure or not in ASP.NET or JavaScript

published 788 days, 6 hours, 14 minutes ago posted by dharadhara 788 days, 13 hours, 7 minutes ago
Friday, April 22, 2011 1:10:00 PM GMT Friday, April 22, 2011 6:16:48 AM GMT
Recently in one the project we require to check whether page is secure or not as we are going to open a new popup window from that page and that why we need to pass https protocol if we have that page secure. I have search lots of things on internet and I have found following ways of finding whether... (more)
category: Web Dev | clicked: 0 | comment | | source: beyondrelational.com
tags: .NET, JavaScript, ASP.NET
6
Shouts

Binding XML File to Data Grid in Silverlight

published 788 days, 6 hours, 14 minutes ago posted by dharadhara 789 days, 11 hours, 36 minutes ago
Friday, April 22, 2011 1:10:00 PM GMT Thursday, April 21, 2011 7:48:11 AM GMT
It is a common scenario when we need to bind or display data from XML File to Silverlight Data Grid. In this article, I have tried to demonstrate this with simple steps. What all we are going to do is Download content of XML file as string using WebClient class. Parse XML file using LINQ to XML. Bind... (more)
category: Web Dev | clicked: 11 | comment | | source: beyondrelational.com
tags: .NET, Silverlight, data grid, XML, ASP.NET
6
Shouts

What is difference between jQuery and Microsoft Ajax? When do you use Ajax and When do you use jQuery? What is the significance of each?

published 790 days, 20 hours, 22 minutes ago posted by dharadhara 792 days, 12 hours, 19 minutes ago
Tuesday, April 19, 2011 11:01:59 PM GMT Monday, April 18, 2011 7:04:47 AM GMT
jQuery is like the ASP.NET AJAX Client Framework (MicrosoftAjax.js), with selectors, DOM selections/ manipulations, plug-ins, and better animation support. jQuery is more powerful than MS AJAX on the client side due to its light weight nature . This is the reason Microsoft integrated jQuery... (more)
category: Web Dev | clicked: 5 | comment | | source: beyondrelational.com
tags: .NET, jQuery, Ajax, ASP.NET
6
Shouts

Stored Procedure in WCF Data Service

published 790 days, 20 hours, 22 minutes ago posted by dharadhara 792 days, 12 hours, 20 minutes ago
Tuesday, April 19, 2011 11:01:59 PM GMT Monday, April 18, 2011 7:03:45 AM GMT
In this article we will explore, how could we use Stored Procedure with WCF Data Service? You can read Introduction to WCF Data service and ODATA here To use Stored Procedure, at time of creation of Data Model, select Stored Procedure as part of Data Model. Now open EDMX file and right click on that... (more)
category: Web Dev | clicked: 5 | comment | | source: beyondrelational.com
tags: .NET, WCF, ASP.NET
2
Shouts

Closures in CSharp

posted by abhi2434abhi2434 793 days, 3 hours, 17 minutes ago
Sunday, April 17, 2011 4:06:40 PM GMT
Closures are an interesting feature for a language. I have heard a lot of questions around how we can declare closures in C# and hence I thought to start a blog on it. Over the internet, there are lots of examples on closures available which are taking help of functional languages like F#, yes it is very important in perspective of these languages as those are easy to declare and also inherently supported yet other languages like C# or VB.NET can also take help of these feature. Lets take a look how C# c... (more)
category: Architecture | clicked: 0 | comment | | source: www.abhisheksur.com
tags: .NET, closure, CSharp
5
Shouts

Implementing dependency injection pattern in .NET

published 794 days, 5 hours ago posted by dharadhara 795 days, 13 hours, 20 minutes ago
Saturday, April 16, 2011 2:24:19 PM GMT Friday, April 15, 2011 6:04:02 AM GMT
Dependency injection pattern is a Software and Architecture designing technique that enables to us to separation of concerns,Modules,Classes and Extensibility of Software Development Project. It enables developer to reduce the complexity of project and you can also add new features to software without... (more)
category: Web Dev | clicked: 1 | comment | | source: beyondrelational.com
tags: .NET, ASP.NET
5
Shouts

What is XAP file in Silverlight?

posted by dharadhara 795 days, 13 hours, 21 minutes ago
Friday, April 15, 2011 6:03:08 AM GMT
Target Audience: Beginners in Silverlight When you start learning Silverlight and create your first Silverlight application, one thing you will notice XAP file along with HTML and ASPX files. First time after running your Silverlight application you can see XAP file in client bin folder. Before running... (more)
category: Web Dev | clicked: 0 | comment | | source: beyondrelational.com
tags: .NET, Silverlight, Xap, ASP.NET
3
Shouts

C#/.NET Little Wonders: First() and Single() - Similar Yet Different

published 794 days, 5 hours ago posted by BlackRabbitCoderBlackRabbitCoder 795 days, 20 hours, 9 minutes ago
Saturday, April 16, 2011 2:24:19 PM GMT Thursday, April 14, 2011 11:15:25 PM GMT
Once again, in this series of posts I look at the parts of the .NET Framework that may seem trivial, but can really help improve your code by making it easier to write and maintain. Today we're going to look at two LINQ extension methods that are both very similar and yet very different.  Logically, First() and Single() serve similar purposes, but there is a subtle difference between these two that if you aren't expecting it may give you different behaviors. (more)
category: Web Dev | clicked: 0 | comment | | source: blackrabbitcoder.net
tags: .NET, Little Wonders, C#, Linq
5
Shouts

Gizmox Launches First .Net Development Tool for Cross-open Browser/Mobile Standards, HTML5

published 794 days, 5 hours ago posted by webguiwebgui 796 days, 33 minutes ago
Saturday, April 16, 2011 2:24:19 PM GMT Thursday, April 14, 2011 6:50:42 PM GMT
This new beta version is a cross-platform, plugin-free HTML5 alternative to Silverlight's .NET development of data-centric, rich Web & Mobile applications. It also adds the power of jQuery for building interactive, customer-facing HTML5 interfaces. (more)
category: Web Dev | clicked: 1 | comment | | source: www.visualwebgui.com
tags: .NET, mobile application development, Silvelight, Web application, jQuery, html5
6
Shouts

Three new Action Result Type in ASP.NET MVC 3

published 795 days, 11 hours, 38 minutes ago posted by dharadhara 796 days, 14 hours, 10 minutes ago
Friday, April 15, 2011 7:46:27 AM GMT Thursday, April 14, 2011 5:13:36 AM GMT
In ASP.NET MVC incoming browser request mapped to a controller’s action method and that action method returns type of ActionResult in response to the browsers request. I was playing bit with ASP.NET MVC3 to check out new features of ASP.NET MVC 3 and I have found three great new ActionResult Type... (more)
category: Web Dev | clicked: 2 | comment | | source: beyondrelational.com
tags: ASP.NET MVC, .NET, ASP.NET
6
Shouts

AutoCompleteBox in Silverlight 4.0

published 800 days, 4 hours, 1 minute ago posted by dharadhara 802 days, 11 hours, 56 minutes ago
Sunday, April 10, 2011 3:23:14 PM GMT Friday, April 08, 2011 7:27:57 AM GMT
Target Audience: Beginners AutoCompleteBox control is part of Silverlight 4.0 SDK. It allows us to have a Google style text box. AutoCompleteBox will look for suggestion in IEnumerable list. Create a DataSource to find the suggestion Very first let us create a Country Class. This class will serve as... (more)
category: Web Dev | clicked: 0 | 1 comment | | source: beyondrelational.com
tags: .NET, Silverlight, ASP.NET
7
Shouts

Playing with CSS in jQuery – How to work with CSS in jQuery?

published 803 days, 6 hours, 52 minutes ago posted by dharadhara 804 days, 11 hours, 33 minutes ago
Thursday, April 07, 2011 12:32:18 PM GMT Wednesday, April 06, 2011 7:51:01 AM GMT
How can we apply css to elements using JQuery library. The below example is to apply css on div element that has id as DivId. $(”#DivId “).css(”border”,”4px red”); To apply css in odd childs of parent node using JQuery library. $(”tr:odd”).css(”background-color”, “#bbbbff”); To apply css in even childs... (more)
category: Web Dev | clicked: 1 | 1 comment | | source: beyondrelational.com
tags: .NET, jQuery, CSS, ASP.NET
6
Shouts

Enumeration in DataContract of WCF

posted by dharadhara 805 days, 11 hours, 41 minutes ago
Tuesday, April 05, 2011 7:42:31 AM GMT
By default Enums are serializable . If we define Enum at service side and use it in Data Contract, it is exposed at the client side. For example, if we have an Enum as below, public enum ProductDeliveryPriority { Low, Normal, High, Urgent } And we are using it in DataContract as below [DataMember] public... (more)
category: Web Dev | clicked: 0 | comment | | source: beyondrelational.com
tags: .NET, WCF, ASP.NET
6
Shouts

Mastering in Visual Studio 2010 Debugging - Abhijit's Blog

posted by dharadhara 805 days, 11 hours, 42 minutes ago
Tuesday, April 05, 2011 7:41:57 AM GMT
Visual Studio IDE gives us a lot of tools to debug our application. Sometimes debugging activity takes a very long time to identify the root cause. But VS IDE provides a lot of handy tools which help to debug code in a better way. Debugger features include error listing, adding breakpoints, visualize... (more)
category: Web Dev | clicked: 0 | comment | | source: beyondrelational.com
tags: .NET, Visual Studio 2010, ASP.NET
6
Shouts

How to Identify a class in Software Design?

published 804 days, 17 hours, 36 minutes ago posted by dharadhara 806 days, 8 hours, 57 minutes ago
Wednesday, April 06, 2011 1:48:02 AM GMT Monday, April 04, 2011 10:26:43 AM GMT
While designing software architecture, the first question that comes is How to identify a class? How will you know that a class needs to be created for this type? A class is the representation of the type of object. Software architecture has its own Object Oriented Design Principles that you must follow... (more)
category: Web Dev | clicked: 0 | 1 comment | | source: beyondrelational.com
tags: .NET, ASP.NET
2
Shouts

Internals of LINQ

published 805 days, 23 hours, 37 minutes ago posted by abhi2434abhi2434 806 days, 22 hours, 30 minutes ago
Monday, April 04, 2011 7:46:31 PM GMT Sunday, April 03, 2011 8:53:42 PM GMT
If you remember my post on Annonymous Types, I have already stated that there is no concept of annonymous types in MSIL. Every generated type will be mapped to a concrete type produced by C# compiler during the runtime. In this post, I am going to cover few basics of LINQ, and how it is been maintained in IL. If you are very new to Linq, it is recommended to learn the basic usage of it first. You can read my article on Linq Basics, to know more about it. LINQ means Language Integrated Query is one of... (more)
category: Architecture | clicked: 1 | comment | | source: www.abhisheksur.com
tags: .NET, C#, internals, Linq
6
Shouts

Debugging 64 bit application using IntelliTrace – Visual Studio 2010 Service Pack 1 Beta

published 810 days, 22 hours, 17 minutes ago posted by dharadhara 811 days, 10 hours, 26 minutes ago
Wednesday, March 30, 2011 9:07:17 PM GMT Wednesday, March 30, 2011 8:58:05 AM GMT
IntelliTrace is an new features of Visual Studio 2010 Ultimate Edition. By default IntelliTrace is enabled . During debugging in Visual Studio, IntelliTrace works in the background and collect debugging information automatically and stored them in IntelliTrace Log File (. iTrace File ) . You can use... (more)
category: Web Dev | clicked: 0 | 1 comment | | source: beyondrelational.com
tags: .NET, Visual Studio 2010, ASP.NET
4
Shouts

Visual .NET Development simplicity meets Web 2.0 (finally) ?� Visual WebGui Web Blog

published 812 days, 4 hours, 30 minutes ago posted by webguiwebgui 812 days, 10 hours, 7 minutes ago
Tuesday, March 29, 2011 2:53:38 PM GMT Tuesday, March 29, 2011 9:16:37 AM GMT
If you miss the good ole’ visual .NET development practices with the move to the web applications world, then Visual WebGui should greatly interest you. Check out upcoming free webinar this week. (more)
category: Screencast | clicked: 3 | comment | | source: webgui20.wordpress.com
tags: .NET, web 2.0, AJAX ASP.NET, Framework, web development, windows developers
6
Shouts

Cross machine communication between .Net Application using WCF

published 812 days, 4 hours, 30 minutes ago posted by dharadhara 812 days, 11 hours, 43 minutes ago
Tuesday, March 29, 2011 2:53:38 PM GMT Tuesday, March 29, 2011 7:41:28 AM GMT
When service and client both are of .Net and resides on different machines then we choose preconfigured netTcpBinding to publsih WCF Service to the client. netTcpBinding is best suited when both client and service are of .Net and communicating to each other either over Intranet or Internet. Since both... (more)
category: Web Dev | clicked: 3 | comment | | source: beyondrelational.com
tags: .NET, WCF, ASP.NET
6
Shouts

What is $.disconnect significance and how it is different from $.disconnectAll

published 812 days, 4 hours, 30 minutes ago posted by dharadhara 813 days, 12 hours, 34 minutes ago
Tuesday, March 29, 2011 2:53:38 PM GMT Monday, March 28, 2011 6:49:59 AM GMT
In jQuery to disconnect one function from another function then $.disconnect is used. Once this statement gets executed, function gets disconnected from reference function and the connected function will not be executed after the code. Syntax is same as connect function . To disconnect c2.fun1 use the... (more)
category: Web Dev | clicked: 0 | 1 comment | | source: beyondrelational.com
tags: .NET, jQuery, ASP.NET
Previous 1 2 ... 10 11 12 13 14 15 16 17 18 19 ... 46 47 Next