I have a Microsoft SQL Server 2008 R2 table as follows..
CREATE TABLE [dbo].[CRSpendByPeriod](
[crmcref] [char](6) NOT NULL,
[year] [numeric](5, 0) NOT NULL,
[mtdvalue_1] [numeric](10, 2) NULL,
[mtdvalue_2] [numeric](10, 2) NULL,
[mtdvalue_3] [numeric](10, 2) NULL,
[mtdvalue_4] [numeric](10, 2)...
I have some code that works great... see below.
This works for one field on screen, I also need to load the function for multiple fields
eg.
ShowOrHide ('field1', 'field2', 'Value');
ShowOrHide ('field3', 'field2', 'Value');
ShowOrHide ('field4', 'field2', 'Value');
Here is the working code...
I have an update button in that passes to an external php based web page
The value passes but includes a thousand separator.
I would like this stripped or just pass Key7 (QueryString Value in Page) instead as this does not format the number as...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.