Hi folks

This is a discussion on "Hi folks" within the Introduce Yourself section. This forum, and the thread "Hi folks are both part of the Community category.



Go Back   Webforumz.com > Community > Introduce Yourself

Notices


Reply
 
LinkBack Thread Tools
  #1 (permalink)  
Old Jun 8th, 2004, 08:49
New Member
Join Date: Jun 2004
Location: United Kingdom
Posts: 2
Thanks: 0
Thanked 0 Times in 0 Posts
Hi folks

Found the forums today

I am a somewhat experienced web designer living in Cornwall, England. Completely self taught from books, sites and forum crawling and use ASP and ASP.NET by preferance (easier to understand in short!) but am always searching the web for more knowledge, so look out on the help forums (headed there next!!).

Two sites I have done, or doing, are:
Business Planning Consultancy - done in ASP with an access (will be SQL Server) backend

Langtons (IFA) Ltd - my first bit of .NET
Reply With Quote

  #2 (permalink)  
Old Jun 8th, 2004, 10:32
Highly Reputable Member
Join Date: Jul 2003
Location: Ipswich, UK
Posts: 690
Thanks: 0
Thanked 0 Times in 0 Posts
welcomez!

Holy **** that Langtons site is quick!!!
Reply With Quote
  #3 (permalink)  
Old Jun 8th, 2004, 12:58
New Member
Join Date: Jun 2004
Location: United Kingdom
Posts: 2
Thanks: 0
Thanked 0 Times in 0 Posts
Hey, thanks Smokie.

The site is my first foray into .NET, been using webmatrix and DW MX 2004. Have to say .NET is probably the best thing Microsoft have done in a long time.
Reply With Quote
  #4 (permalink)  
Old Jun 8th, 2004, 16:09
Highly Reputable Member
Join Date: Jul 2003
Location: Ipswich, UK
Posts: 690
Thanks: 0
Thanked 0 Times in 0 Posts
dam right mate, im learning it now.

Wheres that site hosted?
Reply With Quote
  #5 (permalink)  
Old Jun 8th, 2004, 23:03
Most Reputable Member
Join Date: Jul 2003
Posts: 1,856
Thanks: 0
Thanked 0 Times in 0 Posts
Yes, well done that .NET site IS quick!!

Oh and welcome!! [:P]
Reply With Quote
  #6 (permalink)  
Old Jun 9th, 2004, 03:51
Highly Reputable Member
Join Date: Aug 2003
Location: Australia
Posts: 662
Thanks: 0
Thanked 0 Times in 0 Posts
Does it load everything on the first page? Cause it takes like 20 seconds to load the first page then its like its in my systems cache while running the other pages...
Reply With Quote
  #7 (permalink)  
Old Jun 9th, 2004, 09:01
New Member
Join Date: Jun 2004
Location: United Kingdom
Posts: 2
Thanks: 0
Thanked 0 Times in 0 Posts
It's hosted with Netcetra on their developer package. Pretty good hosts - takes time to set up the space correctly (a few support calls), but they are nice and quick at sorting problems etc.

The front page has 3 datasets on it, which is I guess why it is a bit slower. Any tips on how to improve that would be gratefully received.
Reply With Quote
  #8 (permalink)  
Old Jun 9th, 2004, 10:45
Highly Reputable Member
Join Date: Jul 2003
Location: Ipswich, UK
Posts: 690
Thanks: 0
Thanked 0 Times in 0 Posts
Have you tried caching the datasets?

You can either cache the entire page like this:

Code: Select all
<%@ OutPutCache Duration="300" VarybyParam="none" %>
or you could just cache the dataset itself like this:

Code: Select all
    Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
        'Put user code to initialize the page here
        DataSet1 = Cache("Products")
        If DataSet1 Is Nothing Then
            DataSet1 = New DataSet
            SqlDataAdapter1.Fill(DataSet1)
            Cache("Products") = DataSet1
        End If
        DataGrid1.DataSource = DataSet1
        DataGrid1.DataBind()
    End Sub
or you could use a DataReader instead of a DataSet, apparently they are about twice as fast!
Reply With Quote
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
Hello Folks shawfwey Introduce Yourself 6 Oct 3rd, 2007 13:55
Hi Folks Adecan Introduce Yourself 4 Jan 9th, 2007 15:03
hi folks mickc90 Introduce Yourself 1 Jul 30th, 2006 20:11
Hi Folks. I have a problem!! bean68 Introduce Yourself 8 Jul 4th, 2006 22:20
Hey folks =) chrisaw Introduce Yourself 6 Dec 7th, 2005 11:40


All times are GMT. The time now is 21:33.


Powered by vBulletin®
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0 RC8
© 2003-2008 Webforumz.com : All Rights Reserved

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43