Saturday, March 27, 2010

What function i will have

ok i roughly decided what function to have on my webpage
1. is a search function
2. like to have a user control panel as Rachel had shown
3. something that keeps up to date on the data base to display it
e.g if some one as donated a toy I'll to show it on the page using grid view or somthing like that
4. use bread crums by using hypertext

Saturday, March 20, 2010

Recap

gvCats.DataBind()

a Databinding means binding or we can say attaching the values retrieved from the DB to the control so that it the control will be able to display the data within itself. in this case we have set the data source we to display so its the gvcate grid view

Tuesday, March 16, 2010

Types of Hosting Websites

http://www.godaddy.com/Hosting/Legacy.aspx?ci=9009&isc=goazgau02b#details
The Deluxe plan would be the best

http://www.hostingbay.com.au/newsite/html/winserver.html
The Enterprise plan is most suitable

http://www.inmotionhosting.com/hostingplans.html
The Power plan

Supreme Kids Technical Requirements

Server type: Shared
Platform: Windows
Space: 1.5G
Database: 3 MySQL database, Others- Direct Database Access, Database Backup/Restore
SSL (secure socket layer): highest encryption level
SSl available monthly for the shopping carts and purchase pages.
Location: Local (Australia)
Email: 10
Support: Email, Telephone
Service guarantee: 99.99%
Price: about $5-$40 monthly

Sunday, March 14, 2010

Got nothing to do with this but

i upgraded my net yay from a 256k to a 1500k^^

Sunday, March 7, 2010

Cookies

like sessions cookies also have expiration dates on them. cookies are small files that only have line of text that contains the history of a user and so its like a tracking device and big company or any one could use it to third rate parties

Thursday, February 25, 2010

making another class

ok this lesson we are making a new class and is for productID the same thing we did for categoryID and a new table for product in the data base and then displaying them in the grid view and making sure that the url changes if we hover on another data.

this is the properties for the new class

Public Class Product
'this is the properties of this class
Private intProductID As Integer
Private strProductName As String
Private decPrice As Decimal

' this is creating a new properties
Public Sub New(ByVal productID As Integer, ByVal ProductName As String, ByVal Price As Decimal)
intProductID = productID
strProductName = ProductName
decPrice = Price
End Sub

'is setting an id inside of inproductID so we are like making a propertey in inproductID
Public Sub setProductID(ByVal ID As Integer)
intProductID = ID
End Sub
'this is calling the ID in the intProductID properties
Public Function getProductID() As Integer
Return intProductID
End Function


Public Sub setProductName(ByVal Name As String)
strProductName = Name
End Sub

Public Function getProductName() As String
Return strProductName
End Function

Public Sub setPrice(ByVal Price As Decimal)
decPrice = price
End Sub

Public Function decPrice() As Decimal
Return decPrice
End Function
End Class