Bellow is my SQL syntax
CREATE TABLE [dbo].[Security_Module_Info](
[Client_Company_ID] [smallint] NOT NULL,
[Module_ID] [tinyint] NOT NULL,
[Module_Name] [nvarchar](50) NULL,
[Module_Description] [nvarchar](200) NULL,
[Is_Active] [bit] NULL,
[Active_Date] [smalldatetime] NULL,
[Record_Status] [tinyNULL,
[Maker_ID] [smallint] NULL,
[Make_Date] [smalldatetime] NULL,
[Checker_ID] [smallint] NULL,
[Check_Date] [smalldatetime] NULL,
[Authorizer_ID] [smallint] NULL,
[Authorize_Date] [smalldatetime] NULL,
[Record_Action_Type] [tinyint] NULL,
CONSTRAINT [PK_Security_Module_Info] PRIMARY KEY CLUSTERED
(
[Client_Company_ID] ASC,
[Module_ID] ASC
) WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]
I want to create a XML file on my project's App_Data folder.This XML use as the source file of my AspxMenu.I know how to bind XML data to AspxMenu but i dont know how to create XML file .I want to save this table information as a XML file on my App_Data folder.Help me to save table information as a XML file.
Any Suggestion ,advice and reply is grateful.