In Visual Basic 2008 create aspx web pages programmatically

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • =?Utf-8?B?UGV0ZXIgSw==?=

    In Visual Basic 2008 create aspx web pages programmatically

    I am working with Visual Studio or alternately with Expression Web. I need
    to create about 50 aspx pages with about 1200 thumbnali images, typically
    arranged in three to four groups per page, having hyperlinks to the
    corresponding full size images.

    Can anybody point me to locations in MSDN or elsewhere giving the references
    to attach, the commands & objects for creating or opening the pages and
    possibly available classes?

    I have done equivalent things with Excel where the corresponding references
    workboook & worksheet commands, etc, are widely available.

    Any direction would be appreciated.

    Peter K

  • Andrew Morton

    #2
    Re: In Visual Basic 2008 create aspx web pages programmaticall y

    Peter K wrote:
    I am working with Visual Studio or alternately with Expression Web.
    I need to create about 50 aspx pages with about 1200 thumbnali
    images, typically arranged in three to four groups per page, having
    hyperlinks to the corresponding full size images.
    >
    Any direction would be appreciated.
    If it's just a case of presenting an entire folder full of images one page
    at a time, you should be able to do that with two pages: one for the
    thumbnails and one for the preview.

    Thumbnails page:
    Read the content of the thumbnail images folder and make a <tablefrom a
    suitable number of them.
    Include prev/next page links which have URLs which post back to the
    thumbnail page with the page number in, for choosing which set of thumbnails
    to put in the <table>
    Give each thumbnail an <ato the preview page, include the image reference
    in the URL so the preview page can put the appropriate src= in the <img>
    element.

    Preview page:
    Get the image's filename from Request.QuerySt ring("whateverY ouCalledIt")

    If the sets of thumbnails are to be distinguished by, e.g. part of the file
    name, then you can use the same approach but limit each page to images with
    a particular part of the file name.

    Don't worry about the time taken to read the directory contents on every
    access of the page: the OS will take care of any caching needed.

    Otherwise, what is your data source for determining which images go in which
    groups on which pages?

    Andrew


    Comment

    • rowe_newsgroups

      #3
      Re: In Visual Basic 2008 create aspx web pages programmaticall y

      On Jul 11, 5:47 am, Peter K <Pet...@discusi ons.microsoft.c omwrote:
      I am working with Visual Studio or alternately with Expression Web.  I need
      to create about 50 aspx pages with about 1200 thumbnali images, typically
      arranged in three to four groups per page, having hyperlinks to the
      corresponding full size images.
      >
      Can anybody point me to locations in MSDN or elsewhere giving the references
      to attach, the commands & objects for creating or opening the pages and
      possibly available classes?
      >
      I have done equivalent things with Excel where the corresponding references
      workboook & worksheet commands, etc, are widely available.
      >
      Any direction would be appreciated.
      >
      Peter K
      I agree, I wouldn't try to programmaticall y create 50 pages, I'd
      create as few of pages as possible pages (say 1 or 2) that could
      handle the content of all the other pages.

      Thanks,

      Seth Rowe [MVP]

      Comment

      • =?Utf-8?B?UGV0ZXIgSw==?=

        #4
        Re: In Visual Basic 2008 create aspx web pages programmaticall y

        Thxs for your reply. Yes, I could do it that way.

        However,my main problem is that I cannot find anywhere what references to
        attach to the project, what objects to use, etc. I know how to create an
        Excel application, open a workbook, move between work sheets, read & write in
        those pages, save the file, close the workbook, etc. These are widely
        available.

        I need the equivalent items for aspx web pages. What are the libraries, how
        do I create the application, create/open a page, etc.

        Again, I'd appreciate any advise in that direction. Have searched MSDN, VB
        samples, etc. Found nothing relevant to that situation.

        Peter K

        "Andrew Morton" wrote:
        Peter K wrote:
        I am working with Visual Studio or alternately with Expression Web.
        I need to create about 50 aspx pages with about 1200 thumbnali
        images, typically arranged in three to four groups per page, having
        hyperlinks to the corresponding full size images.

        Any direction would be appreciated.
        >
        If it's just a case of presenting an entire folder full of images one page
        at a time, you should be able to do that with two pages: one for the
        thumbnails and one for the preview.
        >
        Thumbnails page:
        Read the content of the thumbnail images folder and make a <tablefrom a
        suitable number of them.
        Include prev/next page links which have URLs which post back to the
        thumbnail page with the page number in, for choosing which set of thumbnails
        to put in the <table>
        Give each thumbnail an <ato the preview page, include the image reference
        in the URL so the preview page can put the appropriate src= in the <img>
        element.
        >
        Preview page:
        Get the image's filename from Request.QuerySt ring("whateverY ouCalledIt")
        >
        If the sets of thumbnails are to be distinguished by, e.g. part of the file
        name, then you can use the same approach but limit each page to images with
        a particular part of the file name.
        >
        Don't worry about the time taken to read the directory contents on every
        access of the page: the OS will take care of any caching needed.
        >
        Otherwise, what is your data source for determining which images go in which
        groups on which pages?
        >
        Andrew
        >
        >
        >

        Comment

        • rowe_newsgroups

          #5
          Re: In Visual Basic 2008 create aspx web pages programmaticall y

          On Jul 11, 11:43 am, Peter K <Pet...@discusi ons.microsoft.c omwrote:
          Thxs for your reply.  Yes, I could do it that way.
          >
          However,my main problem is that I cannot find anywhere what references to
          attach to the project, what objects to use, etc.  I know how to create an
          Excel application, open a workbook, move between work sheets, read & write in
          those pages, save the file, close the workbook, etc.  These are widely
          available.
          >
          I need the equivalent items for aspx web pages.  What are the libraries, how
          do I create the application, create/open a page, etc.
          >
          Again, I'd appreciate any advise in that direction.  Have searched MSDN, VB
          samples, etc.  Found nothing relevant to that situation.
          >
          Peter K
          >
          "Andrew Morton" wrote:
          Peter K wrote:
          I am working with Visual Studio or alternately with Expression Web.
          I need to create about 50 aspx pages with about 1200 thumbnali
          images, typically arranged in three to four groups per page, having
          hyperlinks to the corresponding full size images.
          >
          Any direction would be appreciated.
          >
          If it's just a case of presenting an entire folder full of images one page
          at a time, you should be able to do that with two pages: one for the
          thumbnails and one for the preview.
          >
          Thumbnails page:
          Read the content of the thumbnail images folder and make a <tablefroma
          suitable number of them.
          Include prev/next page links which have URLs which post back to the
          thumbnail page with the page number in, for choosing which set of thumbnails
          to put in the <table>
          Give each thumbnail an <ato the preview page, include the image reference
          in the URL so the preview page can put the appropriate src= in the <img>
          element.
          >
          Preview page:
          Get the image's filename from Request.QuerySt ring("whateverY ouCalledIt")
          >
          If the sets of thumbnails are to be distinguished by, e.g. part of the file
          name, then you can use the same approach but limit each page to images with
          a particular part of the file name.
          >
          Don't worry about the time taken to read the directory contents on every
          access of the page: the OS will take care of any caching needed.
          >
          Otherwise, what is your data source for determining which images go in which
          groups on which pages?
          >
          Andrew
          Build web apps and services that run on Windows, Linux, and macOS using C#, HTML, CSS, and JavaScript. Get started for free on Windows, Linux, or macOS.


          Don't take this the wrong way - but you need more basic help than this
          ng should supply (imo). The above link has some good videos, but I'd
          recommend getting an ASP.NET book and download Visual Web Developer
          Express if you don't have the full version of Visual Studio.

          Thanks.

          Seth Rowe [MVP]

          Comment

          • =?Utf-8?B?UGV0ZXIgSw==?=

            #6
            Re: In Visual Basic 2008 create aspx web pages programmaticall y

            Thxs for your reply.

            I'm not quite sure what you mean by creating 'one or two pages that could
            handle the contents of all the other pages'. There are 1200 image addresses
            & 1200 thumbnail addresses (available in a sreadsheet as well as in an SQL
            database) & they all have to be put onto web pages. That's not a job to do
            one by one.

            I wrote a program to create the folders & place the images into the folders,
            another one to create the thumbnails, also placed into the set of folders.
            All those things are well available & documented in MSDN & in many other
            places.

            However, for creating aspx web pages I have not been able to find the
            equivalent info, which references/libraries to attach to the project, what
            objects to use to define the application & to create/open pages, & write to
            them.

            I'd appreciate any help in that direction.

            Peter K



            What I cannnot find is what

            "rowe_newsgroup s" wrote:
            On Jul 11, 5:47 am, Peter K <Pet...@discusi ons.microsoft.c omwrote:
            I am working with Visual Studio or alternately with Expression Web. I need
            to create about 50 aspx pages with about 1200 thumbnali images, typically
            arranged in three to four groups per page, having hyperlinks to the
            corresponding full size images.

            Can anybody point me to locations in MSDN or elsewhere giving the references
            to attach, the commands & objects for creating or opening the pages and
            possibly available classes?

            I have done equivalent things with Excel where the corresponding references
            workboook & worksheet commands, etc, are widely available.

            Any direction would be appreciated.

            Peter K
            >
            I agree, I wouldn't try to programmaticall y create 50 pages, I'd
            create as few of pages as possible pages (say 1 or 2) that could
            handle the content of all the other pages.
            >
            Thanks,
            >
            Seth Rowe [MVP]
            >

            Comment

            • Lloyd Sheen

              #7
              Re: In Visual Basic 2008 create aspx web pages programmaticall y


              "Peter K" <PeterK@discusi ons.microsoft.c omwrote in message
              news:387EDD00-F6EA-445A-9649-14895D8373F6@mi crosoft.com...
              Thxs for your reply.
              >
              I'm not quite sure what you mean by creating 'one or two pages that could
              handle the contents of all the other pages'. There are 1200 image
              addresses
              & 1200 thumbnail addresses (available in a sreadsheet as well as in an SQL
              database) & they all have to be put onto web pages. That's not a job to
              do
              one by one.
              >
              I wrote a program to create the folders & place the images into the
              folders,
              another one to create the thumbnails, also placed into the set of folders.
              All those things are well available & documented in MSDN & in many other
              places.
              >
              However, for creating aspx web pages I have not been able to find the
              equivalent info, which references/libraries to attach to the project, what
              objects to use to define the application & to create/open pages, & write
              to
              them.
              >
              I'd appreciate any help in that direction.
              >
              Peter K
              >
              >
              >
              What I cannnot find is what
              >
              "rowe_newsgroup s" wrote:
              >
              >On Jul 11, 5:47 am, Peter K <Pet...@discusi ons.microsoft.c omwrote:
              I am working with Visual Studio or alternately with Expression Web. I
              need
              to create about 50 aspx pages with about 1200 thumbnali images,
              typically
              arranged in three to four groups per page, having hyperlinks to the
              corresponding full size images.
              >
              Can anybody point me to locations in MSDN or elsewhere giving the
              references
              to attach, the commands & objects for creating or opening the pages and
              possibly available classes?
              >
              I have done equivalent things with Excel where the corresponding
              references
              workboook & worksheet commands, etc, are widely available.
              >
              Any direction would be appreciated.
              >
              Peter K
              >>
              >I agree, I wouldn't try to programmaticall y create 50 pages, I'd
              >create as few of pages as possible pages (say 1 or 2) that could
              >handle the content of all the other pages.
              >>
              >Thanks,
              >>
              >Seth Rowe [MVP]
              >>
              Part of the following starter kit contains a photo album system. While it
              may not be exactly what you are looking for I am sure that code will point
              you in the right direction and perhaps change your approach to the asp.net
              approach.



              Also you may have more luck with response by posting questions to the
              asp.net forum. microsoft.publi c.dotnet.framew ork.aspnet

              Hope this helps
              LS

              Comment

              • =?Utf-8?B?UGV0ZXIgSw==?=

                #8
                Re: In Visual Basic 2008 create aspx web pages programmaticall y

                Thxs again.

                I have Visual Studio Pro 2008 and have used it extensively. Neither in the
                built in help, nor at MSDN have I so far found anything relevant to my
                problem.

                I have pretty much studied almost all chapters of Scott Michels ' Sams Teach
                Yourself ASP.NET 2.0' and have extensively used it, where applicable. In
                particular, I have looked over the last three chapters, where he develops a
                full application of a multi-user photo album site. None of it is applicable
                to my problem at hand, programmaticall y creating a set of about 50 aspx web
                pages.

                I am a subscriber to https://www.learnvisualstudio.net/ & have seen &
                worked through many of their videos and used the info, where applicable.
                Again, I have not found anything relevant to my current problem.

                To programmaticall y write web aspx pages I need to attach
                references/libraries/namespaces/classes to the project, which ones?
                I then must use objects from the above to create/open the files, etc. For
                MS Office this is well documented & widely available, I cannot find anything
                for my current problem.

                Again, any help would be appreciated.

                Peter K
                Excel application, open a workbook, move between work sheets, read & write in
                those pages, save the file, close the workbook, etc. These are widely
                available.

                I need the equivalent items for aspx web pages. What are the libraries, how
                do I create the application, create/open a page, etc.

                Again, I'd appreciate any advise in that direction.

                "rowe_newsgroup s" wrote:
                On Jul 11, 11:43 am, Peter K <Pet...@discusi ons.microsoft.c omwrote:
                Thxs for your reply. Yes, I could do it that way.

                However,my main problem is that I cannot find anywhere what references to
                attach to the project, what objects to use, etc. I know how to create an
                Excel application, open a workbook, move between work sheets, read & write in
                those pages, save the file, close the workbook, etc. These are widely
                available.

                I need the equivalent items for aspx web pages. What are the libraries, how
                do I create the application, create/open a page, etc.

                Again, I'd appreciate any advise in that direction. Have searched MSDN, VB
                samples, etc. Found nothing relevant to that situation.

                Peter K

                "Andrew Morton" wrote:
                Peter K wrote:
                I am working with Visual Studio or alternately with Expression Web.
                I need to create about 50 aspx pages with about 1200 thumbnali
                images, typically arranged in three to four groups per page, having
                hyperlinks to the corresponding full size images.
                Any direction would be appreciated.
                If it's just a case of presenting an entire folder full of images one page
                at a time, you should be able to do that with two pages: one for the
                thumbnails and one for the preview.
                Thumbnails page:
                Read the content of the thumbnail images folder and make a <tablefrom a
                suitable number of them.
                Include prev/next page links which have URLs which post back to the
                thumbnail page with the page number in, for choosing which set of thumbnails
                to put in the <table>
                Give each thumbnail an <ato the preview page, include the image reference
                in the URL so the preview page can put the appropriate src= in the <img>
                element.
                Preview page:
                Get the image's filename from Request.QuerySt ring("whateverY ouCalledIt")
                If the sets of thumbnails are to be distinguished by, e.g. part of the file
                name, then you can use the same approach but limit each page to images with
                a particular part of the file name.
                Don't worry about the time taken to read the directory contents on every
                access of the page: the OS will take care of any caching needed.
                Otherwise, what is your data source for determining which images go in which
                groups on which pages?
                Andrew
                >
                Build web apps and services that run on Windows, Linux, and macOS using C#, HTML, CSS, and JavaScript. Get started for free on Windows, Linux, or macOS.

                >
                Don't take this the wrong way - but you need more basic help than this
                ng should supply (imo). The above link has some good videos, but I'd
                recommend getting an ASP.NET book and download Visual Web Developer
                Express if you don't have the full version of Visual Studio.
                >
                Thanks.
                >
                Seth Rowe [MVP]

                >

                Comment

                • =?Utf-8?B?UGV0ZXIgSw==?=

                  #9
                  Re: In Visual Basic 2008 create aspx web pages programmaticall y


                  Thxs,

                  I'll have a look at the reference & also do further posts at the suggested URL

                  Peter K


                  "Lloyd Sheen" wrote:
                  >
                  "Peter K" <PeterK@discusi ons.microsoft.c omwrote in message
                  news:387EDD00-F6EA-445A-9649-14895D8373F6@mi crosoft.com...
                  Thxs for your reply.

                  I'm not quite sure what you mean by creating 'one or two pages that could
                  handle the contents of all the other pages'. There are 1200 image
                  addresses
                  & 1200 thumbnail addresses (available in a sreadsheet as well as in an SQL
                  database) & they all have to be put onto web pages. That's not a job to
                  do
                  one by one.

                  I wrote a program to create the folders & place the images into the
                  folders,
                  another one to create the thumbnails, also placed into the set of folders.
                  All those things are well available & documented in MSDN & in many other
                  places.

                  However, for creating aspx web pages I have not been able to find the
                  equivalent info, which references/libraries to attach to the project, what
                  objects to use to define the application & to create/open pages, & write
                  to
                  them.

                  I'd appreciate any help in that direction.

                  Peter K



                  What I cannnot find is what

                  "rowe_newsgroup s" wrote:
                  On Jul 11, 5:47 am, Peter K <Pet...@discusi ons.microsoft.c omwrote:
                  I am working with Visual Studio or alternately with Expression Web. I
                  need
                  to create about 50 aspx pages with about 1200 thumbnali images,
                  typically
                  arranged in three to four groups per page, having hyperlinks to the
                  corresponding full size images.

                  Can anybody point me to locations in MSDN or elsewhere giving the
                  references
                  to attach, the commands & objects for creating or opening the pages and
                  possibly available classes?

                  I have done equivalent things with Excel where the corresponding
                  references
                  workboook & worksheet commands, etc, are widely available.

                  Any direction would be appreciated.

                  Peter K
                  >
                  I agree, I wouldn't try to programmaticall y create 50 pages, I'd
                  create as few of pages as possible pages (say 1 or 2) that could
                  handle the content of all the other pages.
                  >
                  Thanks,
                  >
                  Seth Rowe [MVP]
                  >
                  >
                  Part of the following starter kit contains a photo album system. While it
                  may not be exactly what you are looking for I am sure that code will point
                  you in the right direction and perhaps change your approach to the asp.net
                  approach.
                  >

                  >
                  Also you may have more luck with response by posting questions to the
                  asp.net forum. microsoft.publi c.dotnet.framew ork.aspnet
                  >
                  Hope this helps
                  LS
                  >
                  >

                  Comment

                  • rowe_newsgroups

                    #10
                    Re: In Visual Basic 2008 create aspx web pages programmaticall y

                    On Jul 11, 12:03 pm, Peter K <Pet...@discusi ons.microsoft.c omwrote:
                    Thxs for your reply.
                    >
                    I'm not quite sure what you mean by creating 'one or two pages that could
                    handle the contents of all the other pages'.  There are 1200 image addresses
                    & 1200 thumbnail addresses (available in a sreadsheet as well as in an SQL
                    database)  & they all have to be put onto web pages.  That's not a job to do
                    one by one.
                    >
                    I wrote a program to create the folders & place the images into the folders,
                    another one to create the thumbnails, also placed into the set of folders..  
                    All those things are well available & documented in MSDN & in many other
                    places.
                    >
                    However, for creating aspx web pages I have not been able to find the
                    equivalent info, which references/libraries to attach to the project, what
                    objects to use to define the application & to create/open pages, & write to
                    them.
                    >
                    I'd appreciate any help in that direction.
                    >
                    Peter K
                    >
                    What I cannnot find is what
                    >
                    "rowe_newsgroup s" wrote:
                    On Jul 11, 5:47 am, Peter K <Pet...@discusi ons.microsoft.c omwrote:
                    I am working with Visual Studio or alternately with Expression Web.  I need
                    to create about 50 aspx pages with about 1200 thumbnali images, typically
                    arranged in three to four groups per page, having hyperlinks to the
                    corresponding full size images.
                    >
                    Can anybody point me to locations in MSDN or elsewhere giving the references
                    to attach, the commands & objects for creating or opening the pages and
                    possibly available classes?
                    >
                    I have done equivalent things with Excel where the corresponding references
                    workboook & worksheet commands, etc, are widely available.
                    >
                    Any direction would be appreciated.
                    >
                    Peter K
                    >
                    I agree, I wouldn't try to programmaticall y create 50 pages, I'd
                    create as few of pages as possible pages (say 1 or 2) that could
                    handle the content of all the other pages.
                    >
                    Thanks,
                    >
                    Seth Rowe [MVP]
                    Are you saying you want to create a page for each image? If so, I
                    don't see any reason to use aspx pages, you can simply use html pages
                    that just have image tags in the content. You could write a simple
                    console application that went through the images, created a file
                    stream, and then outputted the html text to the file.

                    My personal preference would be to create a page that takes a
                    parameter, say from the query string, and use it to retrieve the image
                    from the database and display it. I'm guessing the fields in the Sql
                    database have a unique identifier (say an int primary key) - that's
                    what I would pass in through the query string. ASP.NET has an image
                    control that you could change the ImageUrl property during init or
                    load based on the query string. For the thumbnails, you could simply
                    have a collection of ASP.NET image button controls that redirect to
                    the large image (passing in the correct query string parameters).
                    These controls should be built dynamically and the page should be
                    cached for performance.

                    Thanks,

                    Seth Rowe [MVP]

                    Comment

                    • =?Utf-8?B?UGV0ZXIgSw==?=

                      #11
                      Re: In Visual Basic 2008 create aspx web pages programmaticall y

                      Not one page per image, approx 50 pages with about 60 thumbnails each on
                      average.

                      Your point is well taken that controls should be built dynamically, I was
                      too fixated at the old approach of creating static pages.

                      Thxs, Peter K

                      "rowe_newsgroup s" wrote:
                      On Jul 11, 12:03 pm, Peter K <Pet...@discusi ons.microsoft.c omwrote:
                      Thxs for your reply.

                      I'm not quite sure what you mean by creating 'one or two pages that could
                      handle the contents of all the other pages'. There are 1200 image addresses
                      & 1200 thumbnail addresses (available in a sreadsheet as well as in an SQL
                      database) & they all have to be put onto web pages. That's not a job to do
                      one by one.

                      I wrote a program to create the folders & place the images into the folders,
                      another one to create the thumbnails, also placed into the set of folders..
                      All those things are well available & documented in MSDN & in many other
                      places.

                      However, for creating aspx web pages I have not been able to find the
                      equivalent info, which references/libraries to attach to the project, what
                      objects to use to define the application & to create/open pages, & write to
                      them.

                      I'd appreciate any help in that direction.

                      Peter K

                      What I cannnot find is what

                      "rowe_newsgroup s" wrote:
                      On Jul 11, 5:47 am, Peter K <Pet...@discusi ons.microsoft.c omwrote:
                      I am working with Visual Studio or alternately with Expression Web. I need
                      to create about 50 aspx pages with about 1200 thumbnali images, typically
                      arranged in three to four groups per page, having hyperlinks to the
                      corresponding full size images.
                      Can anybody point me to locations in MSDN or elsewhere giving the references
                      to attach, the commands & objects for creating or opening the pages and
                      possibly available classes?
                      I have done equivalent things with Excel where the corresponding references
                      workboook & worksheet commands, etc, are widely available.
                      Any direction would be appreciated.
                      Peter K
                      I agree, I wouldn't try to programmaticall y create 50 pages, I'd
                      create as few of pages as possible pages (say 1 or 2) that could
                      handle the content of all the other pages.
                      Thanks,
                      Seth Rowe [MVP]
                      >
                      Are you saying you want to create a page for each image? If so, I
                      don't see any reason to use aspx pages, you can simply use html pages
                      that just have image tags in the content. You could write a simple
                      console application that went through the images, created a file
                      stream, and then outputted the html text to the file.
                      >
                      My personal preference would be to create a page that takes a
                      parameter, say from the query string, and use it to retrieve the image
                      from the database and display it. I'm guessing the fields in the Sql
                      database have a unique identifier (say an int primary key) - that's
                      what I would pass in through the query string. ASP.NET has an image
                      control that you could change the ImageUrl property during init or
                      load based on the query string. For the thumbnails, you could simply
                      have a collection of ASP.NET image button controls that redirect to
                      the large image (passing in the correct query string parameters).
                      These controls should be built dynamically and the page should be
                      cached for performance.
                      >
                      Thanks,
                      >
                      Seth Rowe [MVP]

                      >

                      Comment

                      • Jason Hartsoe

                        #12
                        Re: In Visual Basic 2008 create aspx web pages programmaticall y

                        just curious...but why are you not using some of the data controls,
                        gridview, listview, repeater etc and paging?

                        It would require only a few pages...but dynamically from the source create
                        the 50 per page items etc and so on.

                        As for creating the aspx pages programatically ...I wouldn't recommend
                        it...two or three aspx pages would be plenty using a control, datasource and
                        paging.

                        in more detail what are you trying to accomplish by creating these pages
                        seperately(stat ic) as opposed to dynamically?


                        "Peter K" <PeterK@discusi ons.microsoft.c omwrote in message
                        news:99BB3F28-66DB-412B-A478-8A3760D8A801@mi crosoft.com...
                        >I am working with Visual Studio or alternately with Expression Web. I need
                        to create about 50 aspx pages with about 1200 thumbnali images, typically
                        arranged in three to four groups per page, having hyperlinks to the
                        corresponding full size images.
                        >
                        Can anybody point me to locations in MSDN or elsewhere giving the
                        references
                        to attach, the commands & objects for creating or opening the pages and
                        possibly available classes?
                        >
                        I have done equivalent things with Excel where the corresponding
                        references
                        workboook & worksheet commands, etc, are widely available.
                        >
                        Any direction would be appreciated.
                        >
                        Peter K
                        >

                        Comment

                        Working...