Wrox Programmer Forums
Go Back   Wrox Programmer Forums > ASP.NET and ASP > ASP.NET 2.0 > ASP.NET 2.0 Basics
|
ASP.NET 2.0 Basics If you are new to ASP or ASP.NET programming with version 2.0, this is the forum to begin asking questions. Please also see the Visual Web Developer 2005 forum.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the ASP.NET 2.0 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 March 21st, 2006, 01:58 PM
Authorized User
 
Join Date: Mar 2006
Posts: 24
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via ICQ to kalchev
Default kind of Really strange problem

Hi,
here is the problem:
1. I've put that source in defaut.aspx.cs and it works just perfect:

    
Code:
 protected void Button1_Click(Object sender,System.EventArgs e)
Code:
    {
        memUser = Membership.GetUser();
        TextBox1.Text = (string)memUser.UserName;
    }
2. And when I try to put the source below in default.aspx i recieve err.
Here is the code:
Code:
<form id="form1" runat="server">
 <% =(memUser.UserName)%>
</form>
3. I recieve the same err if I put TextBox1.Text = (string)memUser.UserName on the line with TextBox1.Text =.... :
Code:
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs)
        If Not Page.IsPostBack Then
            a1 = 1
             Dim userName1 As String = "kalchev"
            Dim password As String = "alaba1@"
            FormsAuthentication.SetAuthCookie(userName1, False)
            memUser = Membership.GetUser
            TextBox1.Text = (string)memUser.UserName 'here is the ERR
        End If
    End Sub
Here is the error:
Object reference not set to an instance of an object.

Any advice is really welcome

 
Old March 22nd, 2006, 03:32 PM
Friend of Wrox
 
Join Date: Nov 2003
Posts: 1,348
Thanks: 0
Thanked 5 Times in 5 Posts
Default

try:
membership.getuser memuser = new membership.getuser();






Similar Threads
Thread Thread Starter Forum Replies Last Post
strange IE problem sully7 BOOK: ASP.NET 2.0 Website Programming Problem Design Solution ISBN: 978-0-7645-8464-0 3 September 19th, 2008 08:44 AM
Strange problem... F3553 C++ Programming 1 October 25th, 2007 03:56 PM
Strange ListBox problem mirandaym ASP.NET 1.0 and 1.1 Basics 3 August 2nd, 2006 08:30 AM
very strange problem! please help! raybristol ASP.NET 1.0 and 1.1 Basics 8 December 15th, 2005 06:46 AM
Strange XSLT problem... dakkar XSLT 5 May 26th, 2005 06:37 AM





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