Embedding aspx page in a webcontrol library.

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • sweetneel
    New Member
    • Oct 2008
    • 42

    Embedding aspx page in a webcontrol library.

    hI all , i have developed a webcontrol library for a custom data grid. now i want to embed a aspx page for the Searching database .in to this dll. now how should i embed a aspx page with controls in a webcontrol library.


    thanx in advance. its urgent.


    Neel.
  • Frinavale
    Recognized Expert Expert
    • Oct 2006
    • 9749

    #2
    I'm not sure what you're trying to do.


    You can't really embed an "aspx" page into a DLL.

    You can precompile your web application so that all your pages are not compiled every time a user visits your website. When you do this, all of your VB or C# code for the website is compiled into a single DLL that the web application accesses in order to process the web page requests. Your actual ASPX pages are not embedded into the DLL, they are required in order for the user to make a request to the web pages in your website.

    Could you please explain what you are trying to do in more details?

    Thanks,

    -Frinny

    Comment

    • sweetneel
      New Member
      • Oct 2008
      • 42

      #3
      Dear Frinny,
      the dll which i have developed can be used with any web applications. by using a XML file for its configuration. as i have mentioned it is for custom DataGrid. now i want to add more functionality to this dll, by adding search functionality to it. the dll has the searching functionality also. i want that when i will click a button on the grid it will open a page for accepting advamce searching options.. and depending on the Specific web aplications database.it can search. but the advance searching Page will be the part of the dll . notthe part of Web application.

      thats. all. if anything is not clear to you. then pls reply me.

      than u again.

      Neel.

      Comment

      • Frinavale
        Recognized Expert Expert
        • Oct 2006
        • 9749

        #4
        Honestly I have no idea how to accomplish what you are trying to do. I'm not even sure it's possible.

        You could create a method in your DLL that outputs and saves HTML/ASPX file....

        Comment

        Working...