RobbieMills

Stories kicked by RobbieMills

Visual Studio 2010 Service Pack 1 now available(blog.evonet.com.au)

submitted by bartekmbartekm(485) 1 year, 2 months ago

Microsoft has now released Service Pack 1 for Visual Studio 2010 to MSDN subscribers, with the public release due on March 10th. Along with a number of fixes, service Pack also includes the Team Foundation Server Project Server Integration Feature Pack, and the Visual Studio 2010 Load Test Feature Pack. read more...

add a comment |category: |Views: 570

tags: another

What’s coming in the next version of ASP.NET Webforms?(blog.evonet.com.au)

submitted by brianmaddoxbrianmaddox(65) 1 year, 2 months ago

Microsoft are still significantly investing in ASP.NET Webforms, incorporating the best from the Webforms and MVC frameworks into the base ASP.NET classes, based on feedback received from customers, developers, and their internal teams. MVC and Webforms are both excellent frameworks – neither is ‘better’, but each are more suited to different scenario’s. The future release of ASP.NET is still in development, and will incorporate more features from MVC into Webforms than described here. However, the improvements detailed in this post should ease any worries you may have as to whether Webforms is suitable for your next ASP.NET project. read more...

add a comment |category: |Views: 89

tags: another

Scraping web sites that require you to login(blog.evonet.com.au)

submitted by bartekmbartekm(485) 1 year, 2 months ago

Advanced HTML scraping when the data you are after is in a secured section of the site you are trying to scrape. read more...

add a comment |category: |Views: 305

tags: another

Scraping prices off Walmart - A simple Regex Example(blog.evonet.com.au)

submitted by brianmaddoxbrianmaddox(65) 1 year, 3 months ago

Scraping is the process of parsing an HTML web page and extracting specific pieces of text for your own use.  An excellent use for scraping, which we will use as an example in this post, is to monitor a competitor’s web site for the price of a product and alert or perform some other action when the price changes. read more...

add a comment |category: |Views: 42

tags: another

Why you shouldn’t use a GUI designer in WPF and Silverlight(blog.catenalogic.com)

submitted by TischnoetentoetTischnoetentoet(424) 1 year, 3 months ago

For some years, I am trying to convince people in my surroundings not to use the GUI designer for WPF and Silverlight. Some with success, some without. In my crusade to perfect software development for all users (not just you), I finally found some time and energy to create an example application and a video that shows why you shouldn’t be using the GUI designer to design GUI’s. read more...

add a comment |category: |Views: 48

tags: another

How to keep page alive without session time out for a required page.(deliciousdotnet.blogspot.com)

submitted by rajeshmanirajeshmani(39) 1 year, 3 months ago

Hi all we Know that we had an option to set a session time out value. when the session time value expires we had a problem to again reallocating the session values and session time out with a long process. For some we need to keep alive the session values. To solve this problem we actually increase the session timeout value. but this is not a correct process. Some time we may need to have more session timeout for some pages and less session time out value for some pages. At that time we will face the real problem. But we can over ride it very easily. How to Increase the session time out dynamically ???? read more...

add a comment |category: |Views: 23

tags: another

Introduction to Dynamic Data(blog.evonet.com.au)

submitted by bartekmbartekm(485) 1 year, 3 months ago

In 2008, Microsoft released ASP.NET Framework 3.5 SP1 which introduces Dynamic Data, a feature that enables you to quickly build data driven websites by automating many of the CRUD (Create, Read, Update, Delete) operations common to many websites. This article introduces Dynamic Data and the frameworks to use in your ASP.NET projects read more...

add a comment |category: |Views: 34

tags: another

My 10 favourite Programming Quotes(www.ginktage.com)

submitted by isenthilisenthil(2309) 1 year, 3 months ago

For this post , i decided to collect some of my favourite quotes related to the programming . These programming quotes were made by some of the famous personalities in the IT industry . So , without wasting any time , here are my 10 favourite programming quotes ... read more...

2 comments |category: |Views: 1319

tags: another

Invalid postback or callback argument with EnableEventValidation="true(blog.evonet.com.au)

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

ASP.NET 2.0 has a feature known as Event Validation, which ensures that the data being sent back to the server on postback is an expected value. Event Validation is designed to help prevent injection attacks from users who are trying to POST malicious data. If an incoming value is returned via POST that the runtime believes is false then you will get an exception. This article discussed some methods for finding the underlying cause of this problem. read more...

add a comment |category: |Views: 18

tags: another

Getting the identity of a row inserted into a database table with SCOP(blog.evonet.com.au)

submitted by sumatraksumatrak(30) 2 years, 5 months ago

n ASP.NET you often require the ID of a row that you have inserted into a SQL database, either to display the record, or to use the ID to modify data in linked tables. If you are using an SqlDataSource or ObjectDataSource then you can do this with the ReturnValue method. read more...

1 comment |category: |Views: 139

tags: another

Hiding table rows in a repeater(blog.evonet.com.au)

submitted by bartekmbartekm(485) 2 years, 5 months ago

Here’s a simple tip to clean up the way you display data in a repeater, by hiding rows that do not contain any data. read more...

add a comment |category: |Views: 20

tags: another

Using Active Directory to authenticate users to your ASP.NET Web Site(blog.evonet.com.au)

submitted by bartekmbartekm(485) 3 years, 6 months ago

ASP.NET membership provides the ability to authenticate users to your web application using forms based authentication against a database of users or directory services. This article explains the steps required to provide authentication against Active Directory, either for new sites with no authentication, or for existing sites using database authentication. read more...

2 comments |category: |Views: 478

tags: another

PagedList Sorted Edition(mosesofegypt.net)

submitted by mosessaurmosessaur(5424) 3 years, 6 months ago

Sorted Edition of PagedList read more...

3 comments |category: |Views: 324

tags: another

Debate: Do We Really Need Three Layer Architecture?(forums.asp.net)

submitted by joycscjoycsc(1597) 3 years, 6 months ago

How many of you changed your database vendor (i.e. Sql Server, Access) after developing an application? How many of your data entities include business logic? I could say, less than 10% in both cases for my case. I found the similar statistics for my other known developers. I guess this is true for less that 10% of the developers around the world. read more...

7 comments |category: |Views: 750

tags: another

Building jQuery and ASP.Net AJAX Enabled Controls Part 2(mosesofegypt.net)

submitted by mosessaurmosessaur(5424) 3 years, 6 months ago

In the previous part I talked about how to build the client control. In this part I'll show how to put it all together to build an ASP.NET AJAX Enabled Server Control read more...

add a comment |category: |Views: 229

tags: another

Building jQuery and ASP.Net AJAX Enabled Controls Part 1(mosesofegypt.net)

submitted by mosessaurmosessaur(5424) 3 years, 6 months ago

Building jQuery and ASP.Net AJAX Enabled Controls, The jQueryCollapsiblePanelExtender Part 1 Client Control read more...

add a comment |category: |Views: 63

tags: another