.NET Development
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
 
User Name:
Password:
Remember me
Go Back   ASP Free ForumsProgramming.NET Development

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rating: Thread Rating: 9 votes, 3.89 average. Display Modes
 
Unread ASP Free Forums Sponsor:
  #31  
Old April 30th, 2008, 06:33 PM
imbrod's Avatar
imbrod imbrod is offline
Contributing User
ASP Free Newbie (0 - 499 posts)
 
Join Date: Jan 2006
Posts: 238 imbrod User rank is Sergeant (500 - 2000 Reputation Level)imbrod User rank is Sergeant (500 - 2000 Reputation Level)imbrod User rank is Sergeant (500 - 2000 Reputation Level)imbrod User rank is Sergeant (500 - 2000 Reputation Level)imbrod User rank is Sergeant (500 - 2000 Reputation Level) 
Time spent in forums: 1 Day 18 h 12 m 43 sec
Reputation Power: 16
Quote:
Originally Posted by jmurrayhead
Just to add to the above, to reference the "buried" control do such:

vb.net Code:
Original - vb.net Code
  1.  
  2.     Private Sub Page_Load(sender As Object, e As EventArgs)
  3.         Dim testIDtxt As TextBox
  4.         testIDtxt = Repeater1.Controls.(0).FindControl("testID")
  5.         testIDtxt.Text = "this WILL work"
  6.     End Sub


Written in VB, but same concept.


Is this line correct?
testIDtxt = Repeater1.Controls.(0).FindControl("testID")
I tried to c&p it, but Intellisense doesn't accept:
Repeater1.Controls.(0).FindControl("testID")
Repeater1.Controls(0).FindControl("testID")
Repeater1.Controls.FindControl("testID")
...

Reply With Quote
  #32  
Old November 7th, 2008, 10:10 AM
mongoose_za mongoose_za is offline
Registered User
ASP Free Newbie (0 - 499 posts)
 
Join Date: Nov 2008
Posts: 8 mongoose_za User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 3 h 19 m 29 sec
Reputation Power: 0
Quote:
Originally Posted by imbrod
Is this line correct?
testIDtxt = Repeater1.Controls.(0).FindControl("testID")
I tried to c&p it, but Intellisense doesn't accept:
Repeater1.Controls.(0).FindControl("testID")
Repeater1.Controls(0).FindControl("testID")
Repeater1.Controls.FindControl("testID")
...


Howzit,

where there are curved brackets in VB you usually need square ones in C# when dealing with references. So your code would be more like:

testIDtxt = Repeater1.Controls[0].FindControl("testID");
Repeater1.Controls[0].FindControl("testID");

Here's a link to help you in the future. You've got to be very careful using these converters though as they can really put you in a world of hurt if you just copy paste a lot of code.

Search for "CodeTranslator: Free Code Translation From VB.NET <-> C#". I can't post the link cause i'm a new user.

Reply With Quote
  #33  
Old November 12th, 2008, 10:54 AM
Thomas Maus Thomas Maus is offline
Registered User
ASP Free Newbie (0 - 499 posts)
 
Join Date: Nov 2008
Posts: 1 Thomas Maus User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 34 m 39 sec
Reputation Power: 0
Question Object reference not set to an instance of an object

I am connected to a ERP System Vantage table QuoteDtl. The code below is my attempt to update an existing QuoteDtl Record i.e., Line one (QuoteDtl) of the QuoteHed (Quote Header) record.

Dim edvCompany As EpiDataView = CType(oTrans.EpiDataViews("QuoteDtl"), EpiDataView) ‘<<< QuoteDtl is a PROGRESS Table in Vantage ERP System
Dim dvOrdRel As DataView = edvCompany.dataView
MessageBox.Show("After DIMS" & xlsDatei ) ‘ << I see this message

Dim drv As DataRowView
MessageBox.Show("B4 Update" & xlsDatei ) ‘<<< I See This Message
‘ <<<< *** ERROR Object reference not set to an instance of an object.

'drv("RowMod") = "A"
drv("Company") = "HS"
drv("QuoteNum") = 14357
drv("QuoteLine") = 1
drv("CustNum") = 11
drv("PartNum") = "*03-0199"
drv("LineDesc") = "*03-0199 Description"
drv("OrderQty") = 0
drv("Number01") = 3
drv("revisionNum") = "B-1"
drv("ProdCode") = "Dominica"
drv("SellingExpFactor") = 1
drv("Confidencepct") = 0
MessageBox.Show("After Field Sets" )
oTrans.Update()

Reply With Quote
  #34  
Old March 29th, 2009, 01:25 PM
RookieJohn RookieJohn is offline
Registered User
ASP Free Newbie (0 - 499 posts)
 
Join Date: Mar 2009
Posts: 7 RookieJohn User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 1 h 29 m
Reputation Power: 0
I need help

I am new to .net I am having an issue with Object reference not set to instance of an object.
What i am trying to do is fill a label with data from my SQL db an example of what i have is
Dim TA as new StyleDataTableAdpters.StyleTableAdtpter()
Dim ID As Integer=StyleDDL.SelectedValue
Dim Height as String
Height=TA.HeightByID(ID)
Heightlbl.Text= Height

now this is part of a web form, For composing online fence estimates basically the user selects there fence style and the details of the style are set into the labels. I have debugged and in the watch it the error is in my insert But the look shows that all my insert parameters have data and none are null so I'm assuming that the code example above is the source to my error. I'm sorry if this is not clear I have only been doing this for a few months any help is appreciated. Thank You

Reply With Quote
  #35  
Old March 29th, 2009, 04:41 PM
Shadow Wizard's Avatar
Shadow Wizard Shadow Wizard is offline
Moderator From Beyond
ASP Free God 48th Plane (28500 - 28999 posts)
 
Join Date: Sep 2004
Location: Israel
Posts: 28,836 Shadow Wizard User rank is General 21st Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 21st Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 21st Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 21st Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 21st Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 21st Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 21st Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 21st Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 21st Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 21st Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 21st Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 21st Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 21st Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 21st Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 21st Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 21st Grade (Above 100000 Reputation Level)  Folding Points: 544103 Folding Title: Super Ultimate Folder - Level 2Folding Points: 544103 Folding Title: Super Ultimate Folder - Level 2Folding Points: 544103 Folding Title: Super Ultimate Folder - Level 2Folding Points: 544103 Folding Title: Super Ultimate Folder - Level 2Folding Points: 544103 Folding Title: Super Ultimate Folder - Level 2Folding Points: 544103 Folding Title: Super Ultimate Folder - Level 2Folding Points: 544103 Folding Title: Super Ultimate Folder - Level 2
Time spent in forums: 3 Months 2 Weeks 1 Day 13 h 51 m 41 sec
Reputation Power: 2389
the only candidate for null here is this:
StyleDDL.SelectedValue
check in debug mode what is the selected value of your drop down list.

if no luck, error messages of .NET always come with Stack Trace.. post it
here and we'll help you track down the source of that error.

Reply With Quote
  #36  
Old March 29th, 2009, 05:16 PM
RookieJohn RookieJohn is offline
Registered User
ASP Free Newbie (0 - 499 posts)
 
Join Date: Mar 2009
Posts: 7 RookieJohn User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 1 h 29 m
Reputation Power: 0
the styleDDL is not null it has a value, in debug mode all my parameters have sufficient data, nothing is null. My insert method i am using is successful in several other pages of my project. it only seems to be this page and one other page, and both pages I am using the same method to fill labels and get data from db for the labels. Maybe I will try another method of getting Data.

Reply With Quote
  #37  
Old March 29th, 2009, 05:22 PM
RookieJohn RookieJohn is offline
Registered User
ASP Free Newbie (0 - 499 posts)
 
Join Date: Mar 2009
Posts: 7 RookieJohn User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 1 h 29 m
Reputation Power: 0
Quote:
Originally Posted by Shadow Wizard
the only candidate for null here is this:
StyleDDL.SelectedValue
check in debug mode what is the selected value of your drop down list.

if no luck, error messages of .NET always come with Stack Trace.. post it
here and we'll help you track down the source of that error.

This is the Stack Trace
Hope this is what you need.
[NullReferenceException: Object reference not set to an instance of an object.]
_Default.SubmitBtn_Click(Object sender, EventArgs e) in C:\Users\John\Documents\Visual Studio 2008\WebSites\MyProject\FenceEstimate.aspx.vb:96
System.Web.UI.WebControls.Button.OnClick(EventArgs e) +111
System.Web.UI.WebControls.Button.RaisePostBackEven t(String eventArgument) +110
System.Web.UI.WebControls.Button.System.Web.UI.IPo stBackEventHandler.RaisePostBackEvent(String eventArgument) +10
System.Web.UI.Page.RaisePostBackEvent(IPostBackEve ntHandler sourceControl, String eventArgument) +13
System.Web.UI.Page.RaisePostBackEvent(NameValueCol lection postData) +36
System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +1565

Reply With Quote
  #38  
Old April 1st, 2009, 06:34 PM
Shadow Wizard's Avatar
Shadow Wizard Shadow Wizard is offline
Moderator From Beyond
ASP Free God 48th Plane (28500 - 28999 posts)
 
Join Date: Sep 2004
Location: Israel
Posts: 28,836 Shadow Wizard User rank is General 21st Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 21st Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 21st Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 21st Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 21st Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 21st Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 21st Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 21st Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 21st Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 21st Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 21st Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 21st Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 21st Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 21st Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 21st Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 21st Grade (Above 100000 Reputation Level)  Folding Points: 544103 Folding Title: Super Ultimate Folder - Level 2Folding Points: 544103 Folding Title: Super Ultimate Folder - Level 2Folding Points: 544103 Folding Title: Super Ultimate Folder - Level 2Folding Points: 544103 Folding Title: Super Ultimate Folder - Level 2Folding Points: 544103 Folding Title: Super Ultimate Folder - Level 2Folding Points: 544103 Folding Title: Super Ultimate Folder - Level 2Folding Points: 544103 Folding Title: Super Ultimate Folder - Level 2
Time spent in forums: 3 Months 2 Weeks 1 Day 13 h 51 m 41 sec
Reputation Power: 2389
what is line 96 of the file FenceEstimate.aspx.vb?
also please post code for SubmitBtn_Click method from that file.

Reply With Quote
  #39  
Old April 1st, 2009, 11:46 PM
RookieJohn RookieJohn is offline
Registered User
ASP Free Newbie (0 - 499 posts)
 
Join Date: Mar 2009
Posts: 7 RookieJohn User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 1 h 29 m
Reputation Power: 0
Quote:
Originally Posted by Shadow Wizard
what is line 96 of the file FenceEstimate.aspx.vb?
also please post code for SubmitBtn_Click method from that file.

Protected Sub SubmitBtn_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles SubmitBtn.Click
----->this in bold is line 96 Dim Save As FenceEstimate = Nothing "This FenceEtimate is a Vb class Called FenceEstimate it is where i defined the insert parameters"
Dim poop As Boolean = False 'I know im in poop if this stays false.
Save = New FenceEstimate(txtDate.Text, txtFname.Text, txtLName.Text, txtAdd1.Text, txtAdd2.Text, CitysDDL.SelectedValue, txtEmail.Text, txtPhone.Text, txtPhone2.Text, Stylelbl.Text, HeightLable.Text, txtLength.Text, txtLengthRemaove.Text, EarthDDL.SelectedItem.Text, SurfaceDDL.SelectedItem.Text, GradeDDL.SelectedItem.Text, FenceLineDDL.SelectedItem.Text, GatesDDL.SelectedItem.Text, Gate1DDL.SelectedItem.Text, Gate2DDL.SelectedItem.Text, Gate3DDL.SelectedItem.Text, WoodTypeLabel.Text, CapLabel.Text, txtCompleteDate.Text, InHomeDDL.SelectedValue, LabTotlbl.Text, MatTotlbl.Text, TotCostlbl.Text, Statuslbl.Text)
poop = Save.InsertToDB()
------------------------------------------------------------
This is the entire App_Code FenceEstimate VB Page
Public Class FenceEstimate
Public DateOfEst As String = ""
Public F_Name As String = ""
Public L_Name As String = "'"
Public Address1 As String = ""
Public Address2 As String = ""
Public City As String = ""
Public Email As String = ""
Public Phone As String = ""
Public Phone2 As String = ""
Public Style As String = ""
Public Height As String = ""
Public Length As String = ""
Public LengthRemove As String = ""
Public Earth As String = ""
Public Surface As String = ""
Public Level As String = ""
Public FenceLine As String = ""
Public NumGates As String = ""
Public Gate1 As String = ""
Public Gate2 As String = ""
Public Gate3 As String = ""
Public WoodType As String = ""
Public CapStyle As String = ""
Public DateBy As String = ""
Public InHome As String = ""
Public EstLabor As String = ""
Public EstMat As String = ""
Public EstTot As String = ""
Public Status As String = ""
Dim TA As New FenceStylesTableAdapters.FenceEstimatesTableAdapte r()

Public Sub New(ByVal DateOfEst As String, ByVal F_Name As String, ByVal L_Name As String, ByVal Address1 As String, ByVal Address2 As String, ByVal City As String, ByVal Email As String, ByVal Phone As String, ByVal Phone2 As String, ByVal Style As String, ByVal Height As String, ByVal Length As String, ByVal LengthRemove As String, ByVal Earth As String, ByVal Surface As String, ByVal Level As String, ByVal FenceLine As String, ByVal NumGates As String, ByVal Gate1 As String, ByVal Gate2 As String, ByVal Gate3 As String, ByVal WoodType As String, ByVal CapStyle As String, ByVal DateBy As String, ByVal InHome As String, ByVal EstLabor As String, ByVal EstMat As String, ByVal EstTotal As String, ByVal Status As String)
Me.DateOfEst = DateOfEst
Me.F_Name = F_Name
Me.L_Name = L_Name
Me.Address1 = Address1
Me.Address2 = Address2
Me.City = City
Me.Email = Email
Me.Phone = Phone
Me.Phone2 = Phone2
Me.Style = Style
Me.Height = Height
Me.Length = Length
Me.LengthRemove = LengthRemove
Me.Earth = Earth
Me.Surface = Surface
Me.Level = Level
Me.FenceLine = FenceLine
Me.NumGates = NumGates
Me.Gate1 = Gate1
Me.Gate2 = Gate2
Me.Gate3 = Gate3
Me.WoodType = WoodType
Me.CapStyle = CapStyle
Me.DateBy = DateBy
Me.InHome = InHome
Me.EstLabor = EstLabor
Me.EstMat = EstMat
Me.EstTot = EstTot
Me.Status = Status
End Sub
Public Function InsertToDB() As Boolean
Dim Save As Integer
Save = TA.InsertEstimate(DateOfEst, F_Name, L_Name, Address1, Address2, City, Email, Phone, Phone2, Style, Height, Length, LengthRemove, Earth, Surface, Level, FenceLine, NumGates, Gate1, Gate2, Gate3, WoodType, CapStyle, DateBy, InHome, EstLabor, EstMat, EstTot, Status)
If Save > 0 Then
Return True
Else
Return False
End If
End Function
End Class

Appreciate the help thanks this is my first site is complete all but theses errors.
Also I see in the stack trace it is referencing to postData(second line from bottom of stack trace) I was at one point attempting to write a Public Sub Called postData which was meant to be used to fill the labels with Data from DB but i deleted that. I think that may have something to do with it. Thanks for the help it is appreciated

Reply With Quote
  #40  
Old April 1st, 2009, 11:58 PM
RookieJohn RookieJohn is offline
Registered User
ASP Free Newbie (0 - 499 posts)
 
Join Date: Mar 2009
Posts: 7 RookieJohn User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 1 h 29 m
Reputation Power: 0
if you need any more info just ask once again i really appreciate the help.

Reply With Quote
  #41  
Old April 2nd, 2009, 05:20 AM
Shadow Wizard's Avatar
Shadow Wizard Shadow Wizard is offline
Moderator From Beyond
ASP Free God 48th Plane (28500 - 28999 posts)
 
Join Date: Sep 2004
Location: Israel
Posts: 28,836 Shadow Wizard User rank is General 21st Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 21st Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 21st Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 21st Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 21st Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 21st Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 21st Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 21st Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 21st Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 21st Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 21st Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 21st Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 21st Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 21st Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 21st Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 21st Grade (Above 100000 Reputation Level)  Folding Points: 544103 Folding Title: Super Ultimate Folder - Level 2Folding Points: 544103 Folding Title: Super Ultimate Folder - Level 2Folding Points: 544103 Folding Title: Super Ultimate Folder - Level 2Folding Points: 544103 Folding Title: Super Ultimate Folder - Level 2Folding Points: 544103 Folding Title: Super Ultimate Folder - Level 2Folding Points: 544103 Folding Title: Super Ultimate Folder - Level 2Folding Points: 544103 Folding Title: Super Ultimate Folder - Level 2
Time spent in forums: 3 Months 2 Weeks 1 Day 13 h 51 m 41 sec
Reputation Power: 2389
sorry, but if you insist your drop down lists have selected item which is not null,
I fear we're at dead end..

Reply With Quote
  #42  
Old April 2nd, 2009, 08:31 AM
RookieJohn RookieJohn is offline
Registered User
ASP Free Newbie (0 - 499 posts)
 
Join Date: Mar 2009
Posts: 7 RookieJohn User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 1 h 29 m
Reputation Power: 0
I think so too. I am by far a programmer, and dont know too much this is my first project, before this i didnt even know html. Do you have any suggestions on aother method of placin data from a DB table into labels. thanks

Reply With Quote
  #43  
Old April 5th, 2009, 02:29 AM
Shadow Wizard's Avatar
Shadow Wizard Shadow Wizard is offline
Moderator From Beyond
ASP Free God 48th Plane (28500 - 28999 posts)
 
Join Date: Sep 2004
Location: Israel
Posts: 28,836 Shadow Wizard User rank is General 21st Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 21st Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 21st Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 21st Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 21st Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 21st Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 21st Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 21st Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 21st Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 21st Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 21st Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 21st Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 21st Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 21st Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 21st Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 21st Grade (Above 100000 Reputation Level)  Folding Points: 544103 Folding Title: Super Ultimate Folder - Level 2Folding Points: 544103 Folding Title: Super Ultimate Folder - Level 2Folding Points: 544103 Folding Title: Super Ultimate Folder - Level 2Folding Points: 544103 Folding Title: Super Ultimate Folder - Level 2Folding Points: 544103 Folding Title: Super Ultimate Folder - Level 2Folding Points: 544103 Folding Title: Super Ultimate Folder - Level 2Folding Points: 544103 Folding Title: Super Ultimate Folder - Level 2
Time spent in forums: 3 Months 2 Weeks 1 Day 13 h 51 m 41 sec
Reputation Power: 2389
Quote:
Originally Posted by RookieJohn
I think so too. I am by far a programmer, and dont know too much this is my first project, before this i didnt even know html. Do you have any suggestions on aother method of placin data from a DB table into labels. thanks
not out of my sleeve, sorry. feel free to start new thread regarding this
issue and you're likely to get good help in there.

Reply With Quote
Reply

Viewing: ASP Free ForumsProgramming.NET Development > Common causes of: Object reference not set to an instance of an object error


Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


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

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump





 Free IT White Papers!
 
How to Present Effectively Online
This white paper offers practical and actionable advice on the key steps that any presenter should consider as they plan and execute a Webinar or online meeting.

 
Open Source Security Myths
Open Source Software (OSS) is computer software whose source code is available to the general public with relaxed or non-existent intellectual property restrictions (or arrangement such as the public domain), and is usually developed with the input of many contributors.

 
Power and Cooling Capacity Management for Data Centers
This paper describes the principles for achieving power and cooling capacity management.

 
Scalable, Fault-Tolerant NAS for Oracle - The Next Generation
For several years NAS has been evolving as a storage alternative for Oracle databases, and for good reason: NAS is quite often the simplest, most cost-effective storage approach for Oracle. Learn about the benefits that HP's approach to scalable NAS brings to Oracle environments in this comprehensive white paper.

 
Understanding Web Application Security Challenges
This white paper discusses many common threats and preventive measures for Web application security, and explains what you can do to help protect your organization.

 

Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 





© 2003-2009 by Developer Shed. All rights reserved. DS Cluster 4 Hosted by Hostway
Stay green...Green IT