Wrox Programmer Forums
Go Back   Wrox Programmer Forums > ASP.NET and ASP > ASP.NET 1.0 and 1.1 > ASP.NET 1.0 and 1.1 Basics
|
ASP.NET 1.0 and 1.1 Basics ASP.NET discussion for users new to coding in ASP.NET 1.0 or 1.1. NOT for the older "classic" ASP 3 or the newer ASP.NET 2.0.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the ASP.NET 1.0 and 1.1 Basics section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old June 12th, 2006, 09:07 AM
Authorized User
 
Join Date: Jun 2006
Posts: 11
Thanks: 0
Thanked 0 Times in 0 Posts
Default "object variable or with block variable not set"

hi all,
i have converted one asp page to asp.net using migration tool.
after that when running that it gives 'object variable or with block variable not set'
error.
can u plz help solving this?
thank u in advance

<%@ Import namespace="CDB" %>
<%@ Page explicit="true"%>
<script language="VB" runat="Server">

Dim sPassword As String
Dim sPrivilage As Object
Dim sLoginName As String
Dim trasnId as String
Dim a As CDB.Subsl
Dim b As Boolean

</script>

<%a = New CDB.Subsl
sLoginName = Request.Form.Item("uid")
sPassword = Request.Form.Item("pwd")
b = False

b = a.CheckLogin(sLoginName, sPassword)

If b = True Then
    session("transID") = a.LoginID
    session("sLoginName") = sLoginName
    session("sPassword") = sPassword
    session("sPrivilage") = a.Privilage


    If UCase(session("sPrivilage")) = "ADMIN" Then
        Response.Redirect(("Scheme_details.aspx"))
    Else
        Response.Redirect(("default.aspx?flag=false"))
    End If
Else
    Response.Redirect(("default.aspx?flag=false"))
End If
%>
 
Old June 12th, 2006, 03:50 PM
Friend of Wrox
 
Join Date: Nov 2003
Posts: 1,348
Thanks: 0
Thanked 5 Times in 5 Posts
Default

The problem is that you are mixing classic asp with .NET. Aslow, include files will not work







Similar Threads
Thread Thread Starter Forum Replies Last Post
Object variable or With block variable not set haidee_mccaffrey Classic ASP Professional 5 March 8th, 2007 03:34 PM
object variable or with block variable not set Aoude BOOK: Beginning VB.NET Databases 1 February 24th, 2006 05:21 PM
Object variable or With block variable not set tparrish VB Databases Basics 1 May 25th, 2005 10:25 AM
Object variable or With block variable not set tparrish VS.NET 2002/2003 3 May 22nd, 2005 07:40 AM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.