Click here to Skip to main content
15,886,422 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi. We have a website in our company built by the previous developers using crystal report and asp.net page for the parameter.

I could not configure to connect one report to the database so what I did is that, I put a hyperlink in a field and the URL is an asp page with code behind (containing query string). When the link was clicked, it prompts me the message

JavaScript
Could not load type 'data_htmlparam_IS_Purchase_Details'.



Here is the Source Error:

HTML
Line 1:  <%@ Page Language="VB" AutoEventWireup="false" CodeFile="IS_Purchase_Details.aspx.vb" Inherits="data_htmlparam_IS_Purchase_Details" %>
Line 2:  
Line 3:  <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">


What I have tried:

And here is my aspx.vb code-behind

VB
Imports System.Data
Imports System.Data.SqlClient
Imports System
Imports System.Web
Imports System.Web.UI

Partial Class data_htmlparam_IS_Purchase_Details
     Inherits System.Web.UI.Page

  Protected Sub Page_Load(sender as Object, e As System.EventArgs) Handles Me.Load
       Dim ActIndx As String = Request.QueryString("ACTINDX")
       Dim userid As String = Request.QueryString("UserID")
  End Sub

End Class
Posted
Comments
ZurdoDev 9-Dec-16 10:41am    
Isn't there more to the message after Could not load type 'data_htmlparam_IS_Purchase_Details'?

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900