I want to update data fromdatabase using FormView,
Getting following error
ERROR:
Incorrect syntax near 'nvarchar'.
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
Exception Details: System.Data.SqlClient.SqlException: Incorrect syntax near 'nvarchar'.
Source Error:
MYTABLE:
USE [users]
GO
/****** Object: Table [dbo].[Payment5] Script Date: 11/07/2013 16:04:02 ******/
SET ANSI_NULLS OFF
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[Payment5](
[BusinessName] [nvarchar](500) NULL,
[Address] [nvarchar](500) NULL,
[Order date] [nvarchar](200) NULL,
[Plan] [nvarchar](500) NULL,
[NFC Tablets] [nvarchar](500) NULL,
[First Payment] [nvarchar](500) NULL,
[Due On] [nvarchar](500) NOT NULL,
[Subsequent Monthly Payment] [nvarchar](500) NULL,
[Due On Every Month] [nvarchar](500) NULL,
[ClientId] [nvarchar](50) NULL,
CONSTRAINT [PrimaryKey_1de9522e-ac4b-45b5-91e1-feaa4f4413de] PRIMARY KEY CLUSTERED
(
[Due On] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON)
)
GO
ASPXPAGE CODE: