3
Answers

Creating in asp.net Csharp

Hi people!

Can anyone please help me on how I can go about creating a Slideshow with images loaded from an SQL database.
Here is my SQL Script for the table:

CREATE TABLE [dbo].[Pictures](
  [PicId] [uniqueidentifier] NOT NULL,
  [Picture] [image] NOT NULL,
  [PicDescription] [varchar](40) NULL,
  [DateAdded] [datetime] NOT NULL,
 GO

Here is the Procedure I created for what I think would be needed to return the images in asp
CREATE PROC GetAllPictures
AS
SELECT PicId, Picture
FROM Pictures

I hope I can get a responce from anyone this would realy help me for my project.

Answers (3)