Wrox Programmer Forums
|
SQL Server 2000 General discussion of Microsoft SQL Server -- for topics that don't fit in one of the more specific SQL Server forums. version 2000 only. There's a new forum for SQL Server 2005.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the SQL Server 2000 section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old October 9th, 2003, 03:23 AM
Friend of Wrox
 
Join Date: Jun 2003
Posts: 518
Thanks: 0
Thanked 0 Times in 0 Posts
Default update dropdown values

I have problem in update the records.
Stn_no, network, assign_to,location,status values came from the dropdown menu.

When I update by ASP page to only stn_no records, it insert NULL value in network, assign_to, location and status fields.
What coding use that when I update only one record It not insert NULL value in remaining fields.
Keep old value in that fields (sql server).

rec_id=Request.Form("rec_id")
stn_no=Request.Form("stn_no")
network=Request.Form("network")
assign_to=Request.Form("assign_to")
location=Request.Form("location")
status=Request.Form("status")

usql1="update stations2 set "
usql2="stn_no='"& stn_no &"',"
usql3="network='"& network &"',"
usql4="assign_to='"& assign_to &"',"
usql5="location='"& location &"',"
usql6="status='"& status &"' where rec_id='"& rec_id &"'"

usql=usql1+usql2+usql3+usql4+usql5+usql6

cn.Execute usql

Mateen





Similar Threads
Thread Thread Starter Forum Replies Last Post
Get The Values In The DropDown vivek_inos Access VBA 1 November 30th, 2005 04:17 PM
Get The Values In The DropDown vivek_inos Access 2 November 30th, 2005 09:45 AM
populating dropdown values rupen Classic ASP Basics 16 October 10th, 2005 09:48 AM
Dropdown values dotnewnewbie ASP.NET 1.0 and 1.1 Professional 5 October 28th, 2003 12:31 PM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.