DotNetShoutout - Stories tagged with ASP.NET
5
Shouts

WPF Interview Questions

published 687 days, 22 hours, 26 minutes ago posted by dharadhara 689 days, 22 hours, 22 minutes ago
Saturday, July 02, 2011 7:43:16 AM GMT Thursday, June 30, 2011 7:46:23 AM GMT
After getting very good response to the jQuery series some of the readers requested to write about WPF . BeyondRelational is always happy to serve for what readers are ask for. In continuation to jQuery series, I would also like to host WPF... (more)
category: Web Dev | clicked: 12 | 1 comment | | source: beyondrelational.com
tags: .NET, WPF, ASP.NET
4
Shouts

Html Agility Pack(HAP)

published 690 days, 21 hours, 14 minutes ago posted by dharadhara 691 days, 21 hours, 55 minutes ago
Wednesday, June 29, 2011 8:54:36 AM GMT Tuesday, June 28, 2011 8:13:41 AM GMT
Today I got a requirement of converting a Html file to a .net DataTable. Searching in the net though yield some solution , but I was looking for a library if it is available. So I found Html Agility Pack (HAP) . It is a .net library written in C# that... (more)
category: Web Dev | clicked: 36 | 1 comment | | source: beyondrelational.com
tags: .NET, ASP.NET
2
Shouts

Dean Hume - C# Parallel Invoke

published 692 days, 1 hour, 37 minutes ago posted by deanomachinodeanomachino 692 days, 22 hours, 39 minutes ago
Tuesday, June 28, 2011 4:31:57 AM GMT Monday, June 27, 2011 7:30:02 AM GMT
C# Parallel Invoke While working through some code, I noticed a method that I have never seen before. I knew that the .Net 4 Framework had introduced a Parallel Class that helped make parallel ForEach Loops easier, but after some searching I came across the ParallelInvoke() method. So, I jumped on the MSDN site and learnt a little bit more about Task Parallels. It makes running one or more independent tasks concurrently really easy with it's fluent interface. After some reading, I noticed that t... (more)
category: Web Dev | clicked: 14 | 1 comment | | source: www.deanhume.com
tags: parallelinvoke, C#, ASP.NET
2
Shouts

ASP.NET Internals : Visualizing ASP.NET Page Life Cycle using IntelliTrace « Abhijit's World of .NET

published 693 days, 10 hours, 25 minutes ago posted by abhijitjanaabhijitjana 693 days, 17 hours, 30 minutes ago
Sunday, June 26, 2011 7:43:52 PM GMT Sunday, June 26, 2011 12:38:32 PM GMT
Understanding the ASP.NET Page Life Cycle is an essential knowledge for developing ASP.NET Web Application. When request come from client to server there are many operations performed in backend. This article talks about internal of pagelife cycle events with the help of IntelliTrace Debugging ! (more)
category: Web Dev | clicked: 20 | comment | | source: abhijitjana.net
tags: Intellitrace in VIsual Studio 2010 ultimate, IntelliTrace, Page life Cycle, ASP.NET
4
Shouts

Collecting Module Specific Debugging Information using IntelliTrace

published 694 days, 12 hours, 47 minutes ago posted by dharadhara 695 days, 22 hours, 38 minutes ago
Saturday, June 25, 2011 5:21:32 PM GMT Friday, June 24, 2011 7:30:51 AM GMT
I am sure by this time all of you already aware of what is IntelliTrace Debugging. Just to give a quick overview, IntelliTrace is a new features of Visual Studio 2010 Ultimate Edition. By default IntelliTrace is enabled . During debugging in Visual Studio... (more)
category: Web Dev | clicked: 2 | 1 comment | | source: beyondrelational.com
tags: .NET, Debugging, Visual Studio 2010, ASP.NET
4
Shouts

Team Foundation Server Migration and Integration Solutions

published 694 days, 12 hours, 47 minutes ago posted by dharadhara 696 days, 23 hours, 31 minutes ago
Saturday, June 25, 2011 5:21:32 PM GMT Thursday, June 23, 2011 6:37:25 AM GMT
Migration and integration solutions automate the process of moving data between other version control or work item tracking systems and Team Foundation Server Info on : Team Foundation Server Migration and Integration... (more)
category: Web Dev | clicked: 13 | 1 comment | | source: beyondrelational.com
tags: .NET, TFS, ASP.NET
4
Shouts

ASP.NET Internals : “Clearing ASP.NET Session Variables” a in-depth look

published 694 days, 12 hours, 47 minutes ago posted by dharadhara 696 days, 23 hours, 33 minutes ago
Saturday, June 25, 2011 5:21:32 PM GMT Thursday, June 23, 2011 6:35:49 AM GMT
ASP.NET Session is one of most common state management technique for any ASP.NET Web Application. If you want to do a quick refresh or want to know some thing more, please go ahead and read one of my article “ Exploring Session in ASP.NET ” published... (more)
category: Web Dev | clicked: 23 | 1 comment | | source: beyondrelational.com
tags: .NET, ASP.NET
5
Shouts

Working with jQuery Selectors – Events

published 698 days, 8 hours, 25 minutes ago posted by dharadhara 698 days, 21 hours, 21 minutes ago
Tuesday, June 21, 2011 9:43:33 PM GMT Tuesday, June 21, 2011 8:47:32 AM GMT
How to get All I tags inside an element with id ‘header’ ? Now we understood what is ID selector, class selector and to select elements, putting all together we will try to answer the above question For ex: $('#header >I') - Gets get All I... (more)
category: Web Dev | clicked: 6 | 1 comment | | source: beyondrelational.com
tags: .NET, jQuery, ASP.NET
5
Shouts

Enable Scroll Override in Visual Studio

published 699 days, 17 hours, 41 minutes ago posted by dharadhara 701 days, 23 hours, 6 minutes ago
Monday, June 20, 2011 12:28:19 PM GMT Saturday, June 18, 2011 7:03:18 AM GMT
While using Scrolling in Visual Studio IDE, by default it scroll amount is fixed by number of lines. During normal development, when we scroll with in code editor, the scroll amount by fixed line number is fine. But if you zoom out the editor code, scrolling wont be useful as though we have... (more)
category: Web Dev | clicked: 13 | comment | | source: beyondrelational.com
tags: Visual Studio, ASP.NET
4
Shouts

Create Code 39 Bar Codes in ASP.NET

published 701 days, 7 hours, 15 minutes ago posted by sonukapoorsonukapoor 702 days, 16 hours, 18 minutes ago
Saturday, June 18, 2011 10:53:45 PM GMT Friday, June 17, 2011 1:50:38 PM GMT
This article explores how to programmatically generate and display Code 39 barcodes using ASP.NET and the GDI+ classes in the System.Drawing namespace. (more)
category: Web Dev | clicked: 15 | comment | | source: dotnetslackers.com
tags: qrcode, Barcode, ASP.NET
3
Shouts

Get started with ASP.NET MVC and PetaPoco

published 701 days, 7 hours, 15 minutes ago posted by http://jalpesh.blogspot.com/http://jalpesh.blogspot.com/ 702 days, 19 hours, 6 minutes ago
Saturday, June 18, 2011 10:53:45 PM GMT Friday, June 17, 2011 11:02:46 AM GMT
Micro ORM are having their pro and cons and right now its a buzz in the Microsoft.NET developers buzz. I personally like a Micro ORM Concept and I already posted some blog posts with asp.net mvc and dapper Micro ORM. Today I am going to explain how we can use PetaPoco in asp.net mvc application.  First lets get little bit introduction about PetaPoco. PetaPoco is developed by Top Ten software and It’s Micro ORM inspired by Masive and Dapper. Following is link where you can get more information about that... (more)
category: Web Dev | clicked: 39 | comment | | source: jalpesh.blogspot.com
tags: PetaPoco, ASP.NET
2
Shouts

Maintaining Browser History for Ajax events through script manager in asp.net - Dot Net logiX

posted by DotNetLogixDotNetLogix 704 days, 1 hour, 47 minutes ago
Thursday, June 16, 2011 4:21:28 AM GMT
Articles (more)
category: Web Dev | clicked: 0 | comment | | source: www.dotnetlogix.com
tags: browser history, AJAX ASP.NET, ASP.NET
5
Shouts

Replacing Web.config settings with Transformations

published 699 days, 17 hours, 41 minutes ago posted by lenielleniel 704 days, 9 hours, 10 minutes ago
Monday, June 20, 2011 12:28:19 PM GMT Wednesday, June 15, 2011 8:58:54 PM GMT
Let’s say you want to point to a different connection string when you deploy your ASP.NET Web Project to your hosting provider. Until recently you’d have to modify your Web.config file manually. This is an easy procedure but you might end screwing up the file in some way. Visual Studio 2010 comes with a great new feature called Web.config Transformation that allows you to perform transformations in whatever section of your Web.config file. (more)
category: Web Dev | clicked: 40 | comment | | source: www.leniel.net
tags: connection string, web.config, Configuration, Transformations, Visual Studio, Settings, web project, ASP.NET
3
Shouts

Maintaining Browser History for Ajax events through script manager in asp.net

published 703 days, 9 hours, 18 minutes ago posted by http://jalpesh.blogspot.com/http://jalpesh.blogspot.com/ 704 days, 21 hours, 39 minutes ago
Thursday, June 16, 2011 8:51:14 PM GMT Wednesday, June 15, 2011 8:30:07 AM GMT
In one of our project we have requirement of maintaining history of Ajax events. After doing some search on the web I have found one interesting capabilities of Script Manager control. I have found that there is one property called “EnableHistory” which will enable history for all the Ajax Event for which you have created the History Point. So Let’s first take a simple example with Ajax Tab and we are maintaining history of tab Navigation. To add the Ajax tab we first need the AjaxToolKit. So I have dow... (more)
category: Web Dev | clicked: 8 | comment | | source: jalpesh.blogspot.com
tags: Script Manager, Ajax, ASP.NET
4
Shouts

Make an animated gif with Asp.Net C#

published 704 days, 10 hours, 34 minutes ago posted by jphellemonsjphellemons 705 days, 17 hours, 21 minutes ago
Wednesday, June 15, 2011 7:34:46 PM GMT Tuesday, June 14, 2011 12:47:44 PM GMT
As you can read in the blogpost about access jpg’s through ftp with asp.net. I have explained there how I connected with FTP and retrieved images of the IP security camera. Now I have slightly modified the LINQ so that it downloads the latest 3 images and I would like to animate the transition between them. Now I know that I can use some fancy jQuery for image transitions, but I would like to merge the three images in a Gif. (more)
category: Web Dev | clicked: 24 | comment | | source: www.jphellemons.nl
tags: C#, GIF, Linq, ASP.NET
5
Shouts

Powerful Visual Studio 2010 Extensions

published 704 days, 10 hours, 34 minutes ago posted by dharadhara 705 days, 19 hours, 55 minutes ago
Wednesday, June 15, 2011 7:34:46 PM GMT Tuesday, June 14, 2011 10:13:40 AM GMT
Extensions or Add Ins save application development time and make smart code. Visual Studio has vast list of these extension available. I am giving brief about some very useful and powerful extension here, but before this you need to know how to install these extensions. How to Install Extensions Open... (more)
category: Web Dev | clicked: 63 | comment | | source: beyondrelational.com
tags: .NET, VS2010, ASP.NET
8
Shouts

How can you select various HTML Elements using jQuery?

published 704 days, 10 hours, 34 minutes ago posted by dharadhara 706 days, 19 hours, 3 minutes ago
Wednesday, June 15, 2011 7:34:46 PM GMT Monday, June 13, 2011 11:06:13 AM GMT
jQuery can be used to select HTML elements using element selector. Below are some of the examples of how to use selectors. $(<’element>’) - Selects all elements with the given tag name. $(‘p’) – Selects all Paragraph Elements $(‘a’) – Selects all Anchor tags in side a web page... (more)
category: Web Dev | clicked: 10 | comment | | source: beyondrelational.com
tags: .NET, jQuery, ASP.NET
2
Shouts

Finding Saturday,Sunday between date range in C#/ASP.NET - Dot Net logiX

posted by DotNetLogixDotNetLogix 706 days, 20 hours, 25 minutes ago
Monday, June 13, 2011 9:44:06 AM GMT
Articles (more)
category: Web Dev | clicked: 3 | comment | | source: www.dotnetlogix.com
tags: CSharp, ASP.NET
2
Shouts

mvc-mini-profiler - An effective mini-profiler for ASP.NET MVC

posted by http://shijucv.myopenid.com/http://shijucv.myopenid.com/ 706 days, 20 hours, 55 minutes ago
Monday, June 13, 2011 9:14:19 AM GMT
The mvc-mini-profiler is a lightweight, but effective mini profiler tool for ASP.NET apps specially designed for ASP.NET MVC 3 apps. The mvc-mini-profiler is an free and open source tool from Stack Overflow team. The tool is initially developed for StackOverflow family of websites and open sources the tool later. This is an another great open source tool from Stack Overflow team after Dapper object mapper for .Net. The mvc-mini-profiler is available from http://code.google.com/p/mvc-mini-profiler/ . The ... (more)
category: Web Dev | clicked: 10 | comment | | source: weblogs.asp.net
tags: ASP.NET MVC 3, ASP.NET MVC, ASP.NET
7
Shouts

What are jQuery Class Selectors and ID selectors Explain them? - Hima's blog

published 710 days, 6 hours, 42 minutes ago posted by dharadhara 710 days, 20 hours, 25 minutes ago
Thursday, June 09, 2011 11:27:04 PM GMT Thursday, June 09, 2011 9:43:34 AM GMT
jQuery selectors allows to easily identify set of page elements for performing user friendly or required operations . In general, Selection of elements can be 3 types in jQuery. They are 1. Class Selector (.) 2. ID Selector (#) 3. Element selector ( (more)
category: Web Dev | clicked: 3 | comment | | source: beyondrelational.com
tags: .NET, JavaScript, jQuery, ASP.NET
Previous 1 2 ... 6 7 8 9 10 11 12 13 14 15 ... 57 58 Next