DotNetShoutout - Upcoming stories (page 5)
5
Shouts

Extract jpg or png images from a PDF

posted by jphellemonsjphellemons 398 days, 23 hours, 23 minutes ago
Wednesday, April 18, 2012 11:55:43 PM GMT
There are a lot of tools available online to extract images from a PDF, but most of them are shareware or trialware. If you need just a single image, you can right click it in Adobe acrobat reader and copy paste it into Microsofts paint, Paint.net or (overkill) Adobe Photoshop. But if you have a PDF with several pages and several images on each page, you’d like to have it automated. That’s when you start your search for a good free/low cost utility. Or, you can write your own! Much more fun guaranteed! (more)
category: Web Dev | clicked: 7 | comment | | source: www.jphellemons.nl
tags:
4
Shouts

Discrepancies Regarding Bad and good Schizophrenia Signs and symptoms

posted by mdabusufianmdabusufian 400 days, 5 hours, 37 minutes ago
Tuesday, April 17, 2012 5:41:20 PM GMT
Good signs or symptoms determine most signs and symptoms for particular to Schizophrenic patients and therefore are not really generally (more)
category: Web Dev | clicked: 0 | comment | | source: www.niltips.com
4
Shouts

Writing integration tests for ASP .NET with Selenium 2.0 – Part 2

posted by noorani786noorani786 400 days, 14 hours, 13 minutes ago
Tuesday, April 17, 2012 9:05:14 AM GMT
This is the second in a series of posts on writing integration tests for ASP .NET using the Selenium 2.0 web application testing system. In this post, I’ll go over how to write and run C# test-cases using Selenium 2.0. I’ve also provided a base-class that contains helper methods for repetitive stuff like typing inside input fields. The base-class also speeds up the tests by re-using the same driver and preserving logins across tests. (more)
category: Web Dev | clicked: 8 | comment | | source: nizarnoorani.com
tags:
2
Shouts

Create Dynamic Button Controls In Asp.Net And Handle Click Event

posted by amitjainamitjain 401 days, 3 hours, 16 minutes ago
Monday, April 16, 2012 8:02:35 PM GMT
This example explains how to Create or Add Dynamic Controls or Button In Asp.Net page and handle respective event like Click Event. (more)
category: Web Dev | clicked: 4 | comment | | source: www.csharpaspnetarticles.com
4
Shouts

Tuple in C# 4.0

posted by DotNetJalpsDotNetJalps 401 days, 15 hours, 9 minutes ago
Monday, April 16, 2012 8:08:57 AM GMT
C# 4.0 language includes a new feature called Tuple. Tuple provides us a way of grouping elements of different data type. That enables us to use it a lots places at practical world like we can store a coordinates of graphs etc. In C# 4.0 we can create Tuple with Create method. This Create method offer 8 overload like following. So you can group maximum 8 data types with a Tuple. Followings are overloads of a data type. Create(T1)- Which represents a tuple of size 1 Create(T1,T2)- Which represents a tup... (more)
category: Web Dev | clicked: 11 | comment | | source: www.dotnetjalps.com
tags:
2
Shouts

Rx - Join

posted by bnayabnaya 412 days, 17 hours, 59 minutes ago
Thursday, April 05, 2012 5:19:29 AM GMT
this post is an advance one so you haven't yet master the Rx basic practice you might want to start in here. the post will focus on the Join and GroupJoin operators and we will try to get a solid understanding of what does it really means to join multiple data streams. the Rx notion of join is quit different than the join we has used to know in SQL queries. (more)
category: Architecture | clicked: 2 | comment | | source: blogs.microsoft.co.il
tags:
2
Shouts

ReadLine on Binary Stream

posted by oazabiroazabir 412 days, 20 hours, 15 minutes ago
Thursday, April 05, 2012 3:03:19 AM GMT
When you are reading data from a binary stream, like NetworkStream or FileStream and you need to read both binary chunks as well as read one text line at a time, you are on your own as BinaryReader nor Stream supports ReadLine. You can use StreamReader to do ReadLine, but it does not allow you to read chunks of bytes. The Read(byte[], int, int) is not there on StreamReader. Here’s an extension of BinaryReader for doing ReadLine over a binary stream. You can read both byte chunks, as well as read text li... (more)
category: Web Dev | clicked: 1 | comment | | source: omaralzabir.com
tags:
2
Shouts

Memory Stream Multiplexer–write and read from many threads simultaneously

posted by oazabiroazabir 412 days, 20 hours, 18 minutes ago
Thursday, April 05, 2012 3:00:50 AM GMT
Here’s an implementation of MemoryStream like buffer manager where one thread can write and many threads can read simultaneously. Each reading thread gets its own reader and can read from the shared stream on its own without blocking write operation or other parallel read operations. It supports blocking Read call so that reader threads can call Read(…) and wait until some data is available, exactly the same way you would expect a Stream to behave. (more)
category: Web Dev | clicked: 3 | comment | | source: omaralzabir.com
tags:
2
Shouts

Caching WCF javascript proxy on browser

posted by oazabiroazabir 412 days, 20 hours, 19 minutes ago
Thursday, April 05, 2012 2:59:48 AM GMT
When you use WCF services from Javascript, you have to generate the Javascript proxies by hitting the Service.svc/js. If you have five WCF services, then it means five javascripts to download. As browsers download javascripts synchronously, one after another, it adds latency to page load and slows down page rendering performance. Moreover, the same WCF service proxy is downloaded from every page, because the generated javascript file is not cached on browser. Here is a solution that will ensure the gener... (more)
category: Web Dev | clicked: 2 | comment | | source: omaralzabir.com
tags:
2
Shouts

ASP.NET + IIS + DNS Records = Sub Domain on the fly | dotnetExpertGuide.com

posted by nandipnandip 413 days, 22 minutes ago
Wednesday, April 04, 2012 10:56:00 PM GMT
Whenever any web portal provide hosted service, at that time publishing it through sub domain is the most convenient and preferable way. There are many such free hosted services are available on the internet. For e.g. blogger.com and wordpress.com for blog services. If you have noticed, in such portal, whenever user register for a service at that time it ask for a preferable sub domain, and upon choosing sub domain, service start instantly without waiting for DNS propagation compared to normal sub domain... (more)
category: Web Dev | clicked: 5 | comment | | source: www.dotnetexpertguide.com
tags:
2
Shouts

Single Page Applications using ASP.NET | TechBubbles

posted by kalyanms1kalyanms1 444 days, 2 hours, 39 minutes ago
Sunday, March 04, 2012 8:39:47 PM GMT
What is Single Page Application? Single Page Application is an architecture for web applications. It combines the best of web and desktop, built with HTML5 and JavaScript.Single Page Applications are rich and responsive. You do not need any browser plug-ins needs to install for this architecture, it is a standard web technology that is going to work on any device, operating system and browser. You can develop Single Page Applications using ASP.NET MVC\Web Forms technologies. Benefits 1. Great user e... (more)
category: Web Dev | clicked: 42 | comment | | source: www.techbubbles.com
tags: ASP.NET
2
Shouts

What is Static keyword in C# | Tech Samosa

posted by ankygoyalankygoyal 445 days, 7 hours, 48 minutes ago
Saturday, March 03, 2012 3:30:23 PM GMT
In this post let us try to explore what is static keyword in C# Definition of static keyword As per MSDN, “Use the static modifier to declare a static member, which belongs to the type itself rather than to a specific object.” So it means that static keyword should be used with types which provide generic functionality and it doesn’t make sense to create objects of that type. For example, consider the System.Math class in c#. It provide various mathematical functions which can be used in the code as... (more)
category: How To | clicked: 32 | comment | | source: techsamosa.com
tags: C#, static, basics, concepts, C# .NET
2
Shouts

SQL Performance Tuning videos videos collection

posted by questpondquestpond 446 days, 10 hours, 30 minutes ago
Friday, March 02, 2012 12:48:40 PM GMT
This collection is related with SQL Performance tuning wizard and SQL server profiler. SQL Performance tuning and SQL profiler (more)
category: Data | clicked: 12 | comment | | source: www.fundoovideo.com
tags: .Net Interview Questions, sql profiler, sql performance tuning, C# interview questions
2
Shouts

Visual Studio And DotNet Tips and Tricks videos collection

posted by questpondquestpond 446 days, 10 hours, 33 minutes ago
Friday, March 02, 2012 12:45:15 PM GMT
This Collections is related with Visual Studio and .NET Tips and Tricks. Visual Studio and .NET tips and tricks (more)
category: Web Dev | clicked: 24 | comment | | source: www.fundoovideo.com
tags: .NET and C# interview questions, Visual Studio, .NET tips and tricks
2
Shouts

ASP.NET Interview Questions: - Show Post Cache substitution?

posted by questpondquestpond 446 days, 12 hours, 39 minutes ago
Friday, March 02, 2012 10:39:25 AM GMT
In this article we will explain about Post Cache Substitution. For more articles and videos visit us on www.questpond.com (more)
category: Web Dev | clicked: 24 | comment | | source: computerauthor.blogspot.in
tags: Asp.net interview questions, Post cache substitution, ASP.NET
2
Shouts

Waiting for potential MNC offer : DotNetFunda.Com

posted by dotnetfundadotnetfunda 470 days, 16 hours, 59 minutes ago
Tuesday, February 07, 2012 6:19:08 AM GMT
Hello, I have been working as a dotnet faculty in a growing up institute. I have good development experience with popular MNC for about 7 yrs. Actually i had some gap in career due to family commitments. but anyway right now i am into technical track catching up all my tech knowledege. I have cracked an interview with an MNC too. But more than a month i have been waiting for offer from them. (more)
category: Web Dev | clicked: 11 | comment | | source: www.dotnetfunda.com
tags: career advice
2
Shouts

Best Jquery and CSS Login Forms with code | Developers Code

posted by taanu51taanu51 470 days, 19 hours, 33 minutes ago
Tuesday, February 07, 2012 3:45:41 AM GMT
Recently i have created a Login Form with Jquery and css.Today i would like to share some Best Jquery Login forms which are implemented in HTML.Source Code and demos are available here..just try it in your applications Build a Top Panel Login Form With Jquery Coding an instant login form with jquery and phpajax Jquery css login panel Create jquery login form with animated validation effects Nice clean sliding login panel built with jquery I Hope you like th... (more)
category: UX | clicked: 68 | comment | | source: www.developerscode.com
tags: css3, jQuery, loginforms, html5
2
Shouts

Best Html5,CSS and Jquery Forms for Developers | Developers Code

posted by taanu51taanu51 470 days, 19 hours, 33 minutes ago
Tuesday, February 07, 2012 3:44:59 AM GMT
Today i would like to share some Best Eye Catching Forms for developers which are implemented in HTML5,css and Jquery.Source Code and demos are available here..just try it in your applications How to Build Cross-Browser HTML5 Forms Create A Clean and Stylish CSS3 Contact Form Designing Modern Web Forms with HTML 5 and CSS3 Create a Stylish Contact Form with HTML5 & CSS3 Ajax jquery validation html5 form Other Recommended Posts: general , JQuery ,... (more)
category: UX | clicked: 23 | comment | | source: www.developerscode.com
tags: css3, JavaScript, jQuery, html5
2
Shouts

Top 10 Best OPen source CMS for Dotnet Developers | Developers Code

posted by taanu51taanu51 474 days, 9 hours, 27 minutes ago
Friday, February 03, 2012 1:51:51 PM GMT
In this Tutorial,I would like share some best open source content management system for Dotnet Developers.where we can find 1000's websites,themes and so on.. which are very useful Asp.net developers..Lets take the example of first one DotNetNuke.The flexible DotNetNuke open source CMS platform also functions as a web application development framework.Lest check out their powerful benefits to support your Web initiatives. DotNetNuke Umbraco sitecore kentico Mojoportal sitefinit... (more)
category: Web Dev | clicked: 17 | comment | | source: www.developerscode.com
tags: CMS, ASP.NET
2
Shouts

Free Balio UI Kit for Web and Mobile App Designers | Developers Code

posted by taanu51taanu51 474 days, 14 hours, 47 minutes ago
Friday, February 03, 2012 8:31:01 AM GMT
Hi friends,Here i would like to share some information about Free Web UI Kit of Balio UI Kit for Web and Mobile Developers. we can use these UI kit for your Personal or commercial purposes.it contains a massive PSD files login forms, buttons, icons, pagination, stickers, menus and more.Actually,This set is designed by Grafpedia, where they are sharing articles about designing concepts inorder to imporve your designing skills and they are publishing lots of resources like icons,vectors and much more..Ch... (more)
category: UX | clicked: 10 | comment | | source: www.developerscode.com
tags: icons, iconsets
Previous 1 2 3 4 5 6 7 8 9 10 ... 168 169 Next