VBAHole22 Posted November 29, 2003 Posted November 29, 2003 I already have an established asp website with many pages. I want to add a single page that pulls data from an Access table and makes it into a nice DataGrid on the page. I developed this new page in a VS.NET studio using VB.NET. It works great. Now I would like to migrate this single page to my existing asp website. What files do I NEED to move in order to get the new page to work? Here is what I thought I needed to do but it don't fly: Move: aspx aspx.vb the .dll into a bin folder under my web directory What am I missing? Based on some testing that I did, I can render the aspx page but I can never get it to hook up to and use code from the aspx.vb page. Here is my directive: <%@ Page Language="vb" AutoEventWireup="false" Codebehind="Members.aspx.vb" Inherits="Members.NewMembers"%> What am I doing wrong? Quote Wanna-Be C# Superstar
Moderators Robby Posted November 29, 2003 Moderators Posted November 29, 2003 You don't need any of the vb files, only aspx, web.config and the DLLs in the bin. You need user ASPNET to have permissions for that application. Quote Visit...Bassic Software
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.