Hi AnandM,
I dont have any Example for this but i try to explain in details
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
SET ANSI_PADDING ON
GO
CREATE TABLE [dbo].[newsblogs](
[news_id] [int] IDENTITY(1,1) NOT NULL,
[news_type] [int] NULL,
[news_title] [varchar](max) NULL,
[news_shtdesc] [varchar](max) NULL,
[news_date] [datetime] NULL,
[news_simg] [varchar](max) NULL,
[news_simg_alt] [varchar](max) NULL,
[news_bimg] [varchar](max) NULL,
[news_bimg_alt] [varchar](max) NULL,
[news_describe] [varchar](max) NULL,
[position] [int] NULL,
[active] [varchar](max) NULL,
[registered_date] [datetime] NULL,
[registered_by] [int] NULL,
[modified_date] [datetime] NULL,
[modified_by] [int] NULL,
CONSTRAINT [PK_newsblogs] PRIMARY KEY CLUSTERED
(
[news_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] TEXTIMAGE_ON [PRIMARY]
GO
SET ANSI_PADDING OFF
GO
i have this data in my table there is news_simg coloum which has images i am displaing this in my .aspx page in a loop and when i click on that image using anchor tag i want to show a pop up
inside that pop up there is panel which was visible if user is login else not and inside panel Textbox and submit button when submit click the feedback will inserted to the table