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

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread ASP Free Forums Sponsor:
  #1  
Old July 1st, 2009, 05:43 PM
newtoasp_pk newtoasp_pk is offline
Contributing User
ASP Free Newbie (0 - 499 posts)
 
Join Date: Jul 2009
Posts: 103 newtoasp_pk User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 22 h 22 m 32 sec
Reputation Power: 1
VBScript - Database - General - ASP Database Search

Hi

I have implemented a database search in ASP which returns more than 1 record.

I am stuck at how to select 1 record & pass that information to the next page.

In the records display after serach I am displaying a radio button along with other columns against each row.

Can someone pls help me & give sample code on how to detect which row the user has selected from the results page & pass those columns to the next form.

I need sample code plss...

Any other approach samples are welcome.

Many thanks.

Reply With Quote
  #2  
Old July 2nd, 2009, 12:08 AM
keep_it_simple's Avatar
keep_it_simple keep_it_simple is offline
KIS
ASP Free Intermediate (1500 - 1999 posts)
 
Join Date: Jul 2007
Location: USA
Posts: 1,530 keep_it_simple User rank is Lieutenant General (80000 - 90000 Reputation Level)keep_it_simple User rank is Lieutenant General (80000 - 90000 Reputation Level)keep_it_simple User rank is Lieutenant General (80000 - 90000 Reputation Level)keep_it_simple User rank is Lieutenant General (80000 - 90000 Reputation Level)keep_it_simple User rank is Lieutenant General (80000 - 90000 Reputation Level)keep_it_simple User rank is Lieutenant General (80000 - 90000 Reputation Level)keep_it_simple User rank is Lieutenant General (80000 - 90000 Reputation Level)keep_it_simple User rank is Lieutenant General (80000 - 90000 Reputation Level)keep_it_simple User rank is Lieutenant General (80000 - 90000 Reputation Level)keep_it_simple User rank is Lieutenant General (80000 - 90000 Reputation Level)keep_it_simple User rank is Lieutenant General (80000 - 90000 Reputation Level)keep_it_simple User rank is Lieutenant General (80000 - 90000 Reputation Level)keep_it_simple User rank is Lieutenant General (80000 - 90000 Reputation Level)keep_it_simple User rank is Lieutenant General (80000 - 90000 Reputation Level)keep_it_simple User rank is Lieutenant General (80000 - 90000 Reputation Level) 
Time spent in forums: 3 Weeks 4 Days 18 h 49 m 10 sec
Reputation Power: 825
Send a message via Yahoo to keep_it_simple
Quote:
Originally Posted by newtoasp_pk
Hi

I have implemented a database search in ASP which returns more than 1 record.

I am stuck at how to select 1 record & pass that information to the next page.

In the records display after serach I am displaying a radio button along with other columns against each row.

Can someone pls help me & give sample code on how to detect which row the user has selected from the results page & pass those columns to the next form.

I need sample code plss...

Any other approach samples are welcome.

Many thanks.



you'd be better off posting your own thread or have this post split....

explain more on your setup..ie:

only one row is selcted?
what is the radio button for?
would you except a javascript or a pure asp solution?
...etc
__________________
Please give respect to those that helped solve an issue by clicking on the reputation icon

Reply With Quote
  #3  
Old July 2nd, 2009, 03:38 AM
newtoasp_pk newtoasp_pk is offline
Contributing User
ASP Free Newbie (0 - 499 posts)
 
Join Date: Jul 2009
Posts: 103 newtoasp_pk User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 22 h 22 m 32 sec
Reputation Power: 1
Quote:
Originally Posted by keep_it_simple
you'd be better off posting your own thread or have this post split....

explain more on your setup..ie:

only one row is selcted?
what is the radio button for?
would you except a javascript or a pure asp solution?
...etc


-----------
Hi,

Search returns multiple rows
User has to select just one row & the radio button is to enable the user to select 1 row returned by the search
Javascript or ASP both would be ok....

Thanks

Reply With Quote
  #4  
Old July 2nd, 2009, 04:03 AM
sync_or_swim's Avatar
sync_or_swim sync_or_swim is offline
Moderator
Click here for more information.
 
Join Date: Mar 2006
Location: South Wales
Posts: 3,416 sync_or_swim User rank is General 12nd Grade (Above 100000 Reputation Level)sync_or_swim User rank is General 12nd Grade (Above 100000 Reputation Level)sync_or_swim User rank is General 12nd Grade (Above 100000 Reputation Level)sync_or_swim User rank is General 12nd Grade (Above 100000 Reputation Level)sync_or_swim User rank is General 12nd Grade (Above 100000 Reputation Level)sync_or_swim User rank is General 12nd Grade (Above 100000 Reputation Level)sync_or_swim User rank is General 12nd Grade (Above 100000 Reputation Level)sync_or_swim User rank is General 12nd Grade (Above 100000 Reputation Level)sync_or_swim User rank is General 12nd Grade (Above 100000 Reputation Level)sync_or_swim User rank is General 12nd Grade (Above 100000 Reputation Level)sync_or_swim User rank is General 12nd Grade (Above 100000 Reputation Level)sync_or_swim User rank is General 12nd Grade (Above 100000 Reputation Level)sync_or_swim User rank is General 12nd Grade (Above 100000 Reputation Level)sync_or_swim User rank is General 12nd Grade (Above 100000 Reputation Level)sync_or_swim User rank is General 12nd Grade (Above 100000 Reputation Level)sync_or_swim User rank is General 12nd Grade (Above 100000 Reputation Level) 
Time spent in forums: 2 Months 23 h 57 m 27 sec
Reputation Power: 1800
Hi,

If the user only needs to select one row then you dont really need to use radio buttons, you could simply put a button/link next to each row and use the querystring to pass the value of the record, eg:
Code:
While NOT rs.EOF
	Response.Write("<a href=""nextpage.asp?whichrecord=" & rs.Fields("ID") & """>" & rs.Fields("ID") & "</a><b>Record Details: " & rs.Fields("Column1") & " " & rs.Fields("Column2") & "</b><br>")
	rs.MoveNext
Wend

Reply With Quote
  #5  
Old July 2nd, 2009, 08:22 AM
newtoasp_pk newtoasp_pk is offline
Contributing User
ASP Free Newbie (0 - 499 posts)
 
Join Date: Jul 2009
Posts: 103 newtoasp_pk User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 22 h 22 m 32 sec
Reputation Power: 1
Quote:
Originally Posted by sync_or_swim
Hi,

If the user only needs to select one row then you dont really need to use radio buttons, you could simply put a button/link next to each row and use the querystring to pass the value of the record, eg:
Code:
While NOT rs.EOF
	Response.Write("<a href=""nextpage.asp?whichrecord=" & rs.Fields("ID") & """>" & rs.Fields("ID") & "</a><b>Record Details: " & rs.Fields("Column1") & " " & rs.Fields("Column2") & "</b><br>")
	rs.MoveNext
Wend


Hi,

My code is like this:

If Not objrse.EOF Then %>
<br> <br> <br>
<form method=post action='nextpage.asp' name=searchscript>
<table width="100%" border="0" cellpadding="0" cellspacing="10" bgcolor="#F6F6F6">
<thead>
<tr>
<th align=left> </th>
<th align=left>Account Number </th>

<th align=left>Name </th>
<th align=left>Address </th>
</thead>
<tbody>
<% While Not objrse.EOF %>
<tr>
<td><input type="Radio" name="selected"></td>
<td><%= objrse.Fields("Accountno").Value %></td>
<td><%= objrse.Fields("vchAlphaName").Value %></td>
</tr>
<%
objrse.MoveNext
Wend
%>
</tbody>
</table>
<input class='buttonGradient' type='submit' name='submit' value='Next'>
</form>

I need to use the post method.
Can you help with this code pls....to capture the radio button against a row.

Many thanks

Reply With Quote
  #6  
Old July 2nd, 2009, 08:25 AM
newtoasp_pk newtoasp_pk is offline
Contributing User
ASP Free Newbie (0 - 499 posts)
 
Join Date: Jul 2009
Posts: 103 newtoasp_pk User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 22 h 22 m 32 sec
Reputation Power: 1
Quote:
Originally Posted by sync_or_swim
Hi,

If the user only needs to select one row then you dont really need to use radio buttons, you could simply put a button/link next to each row and use the querystring to pass the value of the record, eg:
Code:
While NOT rs.EOF
	Response.Write("<a href=""nextpage.asp?whichrecord=" & rs.Fields("ID") & """>" & rs.Fields("ID") & "</a><b>Record Details: " & rs.Fields("Column1") & " " & rs.Fields("Column2") & "</b><br>")
	rs.MoveNext
Wend


------------------
Hi,

Can you give a sample of the button/link usage that you are talking about

Thanks

Reply With Quote
  #7  
Old July 2nd, 2009, 08:28 AM
sync_or_swim's Avatar
sync_or_swim sync_or_swim is offline
Moderator
Click here for more information.
 
Join Date: Mar 2006
Location: South Wales
Posts: 3,416 sync_or_swim User rank is General 12nd Grade (Above 100000 Reputation Level)sync_or_swim User rank is General 12nd Grade (Above 100000 Reputation Level)sync_or_swim User rank is General 12nd Grade (Above 100000 Reputation Level)sync_or_swim User rank is General 12nd Grade (Above 100000 Reputation Level)sync_or_swim User rank is General 12nd Grade (Above 100000 Reputation Level)sync_or_swim User rank is General 12nd Grade (Above 100000 Reputation Level)sync_or_swim User rank is General 12nd Grade (Above 100000 Reputation Level)sync_or_swim User rank is General 12nd Grade (Above 100000 Reputation Level)sync_or_swim User rank is General 12nd Grade (Above 100000 Reputation Level)sync_or_swim User rank is General 12nd Grade (Above 100000 Reputation Level)sync_or_swim User rank is General 12nd Grade (Above 100000 Reputation Level)sync_or_swim User rank is General 12nd Grade (Above 100000 Reputation Level)sync_or_swim User rank is General 12nd Grade (Above 100000 Reputation Level)sync_or_swim User rank is General 12nd Grade (Above 100000 Reputation Level)sync_or_swim User rank is General 12nd Grade (Above 100000 Reputation Level)sync_or_swim User rank is General 12nd Grade (Above 100000 Reputation Level) 
Time spent in forums: 2 Months 23 h 57 m 27 sec
Reputation Power: 1800
You just need to make sure that each radio button has a unique value, eg:
Code:
		<% While Not objrse.EOF %>
			<tr>
				<td><input type="Radio" name="selected" value="<%= objrse.Fields("Accountno").Value %>"></td>
				<td><%= objrse.Fields("Accountno").Value %></td>
<td><%= objrse.Fields("vchAlphaName").Value %></td>
</tr>
<%
		objrse.MoveNext
		Wend
		%>
	</tbody>
	</table>
<input class='buttonGradient' type='submit' name='submit' value='Next'> 
	</form>

Then, you can grab the id of the selected record on the next page with:
Code:
<%
Dim whichRecord
whichRecord = Request.Form("selected")
%>

Reply With Quote
  #8  
Old July 2nd, 2009, 08:52 AM
newtoasp_pk newtoasp_pk is offline
Contributing User
ASP Free Newbie (0 - 499 posts)
 
Join Date: Jul 2009
Posts: 103 newtoasp_pk User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 22 h 22 m 32 sec
Reputation Power: 1
Quote:
Originally Posted by sync_or_swim
You just need to make sure that each radio button has a unique value, eg:
Code:
		<% While Not objrse.EOF %>
			<tr>
				<td><input type="Radio" name="selected" value="<%= objrse.Fields("Accountno").Value %>"></td>
				<td><%= objrse.Fields("Accountno").Value %></td>
<td><%= objrse.Fields("vchAlphaName").Value %></td>
</tr>
<%
		objrse.MoveNext
		Wend
		%>
	</tbody>
	</table>
<input class='buttonGradient' type='submit' name='submit' value='Next'> 
	</form>

Then, you can grab the id of the selected record on the next page with:
Code:
<%
Dim whichRecord
whichRecord = Request.Form("selected")
%>


----

Hi,

Many thanks for this.

If I also have to store the value of "selected" on this page also,how do I do that?

Reply With Quote
  #9  
Old July 2nd, 2009, 08:56 AM
sync_or_swim's Avatar
sync_or_swim sync_or_swim is offline
Moderator
Click here for more information.
 
Join Date: Mar 2006
Location: South Wales
Posts: 3,416 sync_or_swim User rank is General 12nd Grade (Above 100000 Reputation Level)sync_or_swim User rank is General 12nd Grade (Above 100000 Reputation Level)sync_or_swim User rank is General 12nd Grade (Above 100000 Reputation Level)sync_or_swim User rank is General 12nd Grade (Above 100000 Reputation Level)sync_or_swim User rank is General 12nd Grade (Above 100000 Reputation Level)sync_or_swim User rank is General 12nd Grade (Above 100000 Reputation Level)sync_or_swim User rank is General 12nd Grade (Above 100000 Reputation Level)sync_or_swim User rank is General 12nd Grade (Above 100000 Reputation Level)sync_or_swim User rank is General 12nd Grade (Above 100000 Reputation Level)sync_or_swim User rank is General 12nd Grade (Above 100000 Reputation Level)sync_or_swim User rank is General 12nd Grade (Above 100000 Reputation Level)sync_or_swim User rank is General 12nd Grade (Above 100000 Reputation Level)sync_or_swim User rank is General 12nd Grade (Above 100000 Reputation Level)sync_or_swim User rank is General 12nd Grade (Above 100000 Reputation Level)sync_or_swim User rank is General 12nd Grade (Above 100000 Reputation Level)sync_or_swim User rank is General 12nd Grade (Above 100000 Reputation Level) 
Time spent in forums: 2 Months 23 h 57 m 27 sec
Reputation Power: 1800
Quote:
Originally Posted by newtoasp_pk
If I also have to store the value of "selected" on this page also,how do I do that?

I'm not entirely sure what you mean. On the second page you can use the value of Request.Form("selected") to update a record, display data etc.

can you give me an example of exactly what you are trying to achieve.

Reply With Quote
  #10  
Old July 2nd, 2009, 09:02 AM
newtoasp_pk newtoasp_pk is offline
Contributing User
ASP Free Newbie (0 - 499 posts)
 
Join Date: Jul 2009
Posts: 103 newtoasp_pk User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 22 h 22 m 32 sec
Reputation Power: 1
Quote:
Originally Posted by sync_or_swim
I'm not entirely sure what you mean. On the second page you can use the value of Request.Form("selected") to update a record, display data etc.

can you give me an example of exactly what you are trying to achieve.

--------------

Problem is on the next page there is a variable 'txtacno' which is capturing this value using Request.Form. I cannot modify that next page;
So I need to store the selected value(Request.Form("selected")) on this page in a variable so that it can be accessed on the next page without modifying the next page.

Thanks

Reply With Quote
  #11  
Old July 2nd, 2009, 09:06 AM
sync_or_swim's Avatar
sync_or_swim sync_or_swim is offline
Moderator
Click here for more information.
 
Join Date: Mar 2006
Location: South Wales
Posts: 3,416 sync_or_swim User rank is General 12nd Grade (Above 100000 Reputation Level)sync_or_swim User rank is General 12nd Grade (Above 100000 Reputation Level)sync_or_swim User rank is General 12nd Grade (Above 100000 Reputation Level)sync_or_swim User rank is General 12nd Grade (Above 100000 Reputation Level)sync_or_swim User rank is General 12nd Grade (Above 100000 Reputation Level)sync_or_swim User rank is General 12nd Grade (Above 100000 Reputation Level)sync_or_swim User rank is General 12nd Grade (Above 100000 Reputation Level)sync_or_swim User rank is General 12nd Grade (Above 100000 Reputation Level)sync_or_swim User rank is General 12nd Grade (Above 100000 Reputation Level)sync_or_swim User rank is General 12nd Grade (Above 100000 Reputation Level)sync_or_swim User rank is General 12nd Grade (Above 100000 Reputation Level)sync_or_swim User rank is General 12nd Grade (Above 100000 Reputation Level)sync_or_swim User rank is General 12nd Grade (Above 100000 Reputation Level)sync_or_swim User rank is General 12nd Grade (Above 100000 Reputation Level)sync_or_swim User rank is General 12nd Grade (Above 100000 Reputation Level)sync_or_swim User rank is General 12nd Grade (Above 100000 Reputation Level) 
Time spent in forums: 2 Months 23 h 57 m 27 sec
Reputation Power: 1800
Quote:
Originally Posted by newtoasp_pk
--------------

Problem is on the next page there is a variable 'txtacno' which is capturing this value using Request.Form. I cannot modify that next page;
So I need to store the selected value(Request.Form("selected")) on this page in a variable so that it can be accessed on the next page without modifying the next page.

Thanks

Sorry, thats still not really clear. Which page cant you change, nextpage.asp? If you cant change nextpage.asp then I cant see how you can store anything on that page. Sorry for being dull, but can you post all of your code and a full description of your problem so I can see what is going on.

<edit>
If you have access to nextpage.asp you could store the value of request.form("selected") in a session variable which you can grab on any page.

Reply With Quote
  #12  
Old July 2nd, 2009, 09:14 AM
newtoasp_pk newtoasp_pk is offline
Contributing User
ASP Free Newbie (0 - 499 posts)
 
Join Date: Jul 2009
Posts: 103 newtoasp_pk User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 22 h 22 m 32 sec
Reputation Power: 1
Quote:
Originally Posted by sync_or_swim
Sorry, thats still not really clear. Which page cant you change, nextpage.asp? If you cant change nextpage.asp then I cant see how you can store anything on that page. Sorry for being dull, but can you post all of your code and a full description of your problem so I can see what is going on.

<edit>
If you have access to nextpage.asp you could store the value of request.form("selected") in a session variable which you can grab on any page.


-----------
Yes, I cannot change nextpage.asp
nextpage.asp already has a code Request.form(temp)
From my current page, I need to store the selected value in a variable called 'temp'... Hope this helps.

Thanks

Reply With Quote
  #13  
Old July 2nd, 2009, 09:18 AM
sync_or_swim's Avatar
sync_or_swim sync_or_swim is offline
Moderator
Click here for more information.
 
Join Date: Mar 2006
Location: South Wales
Posts: 3,416 sync_or_swim User rank is General 12nd Grade (Above 100000 Reputation Level)sync_or_swim User rank is General 12nd Grade (Above 100000 Reputation Level)sync_or_swim User rank is General 12nd Grade (Above 100000 Reputation Level)sync_or_swim User rank is General 12nd Grade (Above 100000 Reputation Level)sync_or_swim User rank is General 12nd Grade (Above 100000 Reputation Level)sync_or_swim User rank is General 12nd Grade (Above 100000 Reputation Level)sync_or_swim User rank is General 12nd Grade (Above 100000 Reputation Level)sync_or_swim User rank is General 12nd Grade (Above 100000 Reputation Level)sync_or_swim User rank is General 12nd Grade (Above 100000 Reputation Level)sync_or_swim User rank is General 12nd Grade (Above 100000 Reputation Level)sync_or_swim User rank is General 12nd Grade (Above 100000 Reputation Level)sync_or_swim User rank is General 12nd Grade (Above 100000 Reputation Level)sync_or_swim User rank is General 12nd Grade (Above 100000 Reputation Level)sync_or_swim User rank is General 12nd Grade (Above 100000 Reputation Level)sync_or_swim User rank is General 12nd Grade (Above 100000 Reputation Level)sync_or_swim User rank is General 12nd Grade (Above 100000 Reputation Level) 
Time spent in forums: 2 Months 23 h 57 m 27 sec
Reputation Power: 1800
You say that nextpage.asp has the code:
Code:
Request.form(temp)

Is this exactly as it appears? Or is the word temp surrounded by quotes?

Reply With Quote
  #14  
Old July 2nd, 2009, 09:23 AM
newtoasp_pk newtoasp_pk is offline
Contributing User
ASP Free Newbie (0 - 499 posts)
 
Join Date: Jul 2009
Posts: 103 newtoasp_pk User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 22 h 22 m 32 sec
Reputation Power: 1
Quote:
Originally Posted by sync_or_swim
You say that nextpage.asp has the code:
Code:
Request.form(temp)

Is this exactly as it appears? Or is the word temp surrounded by quotes?

----

Sorry,I mean the next page has Request.form("temp")

So the selected value on the current page needs to be stored in temp as it is to be referenced in nextpage.asp

Thanks

Reply With Quote
  #15  
Old July 2nd, 2009, 09:45 AM
sync_or_swim's Avatar
sync_or_swim sync_or_swim is offline
Moderator
Click here for more information.
 
Join Date: Mar 2006
Location: South Wales
Posts: 3,416 sync_or_swim User rank is General 12nd Grade (Above 100000 Reputation Level)sync_or_swim User rank is General 12nd Grade (Above 100000 Reputation Level)sync_or_swim User rank is General 12nd Grade (Above 100000 Reputation Level)sync_or_swim User rank is General 12nd Grade (Above 100000 Reputation Level)sync_or_swim User rank is General 12nd Grade (Above 100000 Reputation Level)sync_or_swim User rank is General 12nd Grade (Above 100000 Reputation Level)sync_or_swim User rank is General 12nd Grade (Above 100000 Reputation Level)sync_or_swim User rank is General 12nd Grade (Above 100000 Reputation Level)sync_or_swim User rank is General 12nd Grade (Above 100000 Reputation Level)sync_or_swim User rank is General 12nd Grade (Above 100000 Reputation Level)sync_or_swim User rank is General 12nd Grade (Above 100000 Reputation Level)sync_or_swim User rank is General 12nd Grade (Above 100000 Reputation Level)sync_or_swim User rank is General 12nd Grade (Above 100000 Reputation Level)sync_or_swim User rank is General 12nd Grade (Above 100000 Reputation Level)sync_or_swim User rank is General 12nd Grade (Above 100000 Reputation Level)sync_or_swim User rank is General 12nd Grade (Above 100000 Reputation Level) 
Time spent in forums: 2 Months 23 h 57 m 27 sec
Reputation Power: 1800
If you cant change the name of the radio button from "selected" to "temp" then I guess a javscript is the only way around this, however I would be reluctant to use javascript as it can be disabled. Heres an example:
Code:
<input type="text" name="temp" value=""></td>
<input class='buttonGradient' type='submit' name='submit' onclick="javascript:getVal();" value='Next'>

<script>
function getVal(){
	var selVal = "";
	for(var a=0;a<document.searchscript.elements["selected"].length;a++){
		var elem=document.searchscript.elements["selected"];
		if(elem[a].checked==true){
			selVal=elem[a].value;
		}
	}
	document.searchscript.temp.value=selVal;
}
</script>

Reply With Quote
Reply

Viewing: ASP Free ForumsProgrammingASP Development > VBScript - Database - General - ASP Database Search


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 1 Hosted by Hostway
Stay green...Green IT