473,668 Members | 2,632 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Object reference not set to an instance of an object.

JustRun
127 New Member
Hi,

I'm developing a gridview its datasource is SqlDataSource. one of the Grid item is asp:Hyperlink ID = "lnkTopicTitle" , I wanna deal with this Hyperlink from the C# code behind to send a parameter with the NavigateURL property.

Expand|Select|Wrap|Line Numbers
  1.     protected void grdTopicArch_DataBinding(object sender, EventArgs e)
  2.     {
  3.         HyperLink lnkTopicTitle = (HyperLink)grdTopicArch.FindControl("lnkTopicTitle");
  4.         lnkTopicTitle.NavigateUrl = "~/ChurchSubjs/ArchiveTopics.aspx";
  5.     }
  6.  
I tried this code also with:
Expand|Select|Wrap|Line Numbers
  1.     protected void lnkTopicTitle_DataBinding(object sender, EventArgs e)
  2.  
But i got this error
System.NullRefe renceException: Object reference not set to an instance of an object.
In this line:
lnkTopicTitle.N avigateUrl = "~/ChurchSubjs/ArchiveTopics.a spx";

Any Ideas
Feb 23 '09 #1
11 4443
tlhintoq
3,525 Recognized Expert Specialist
Line 3 makes a hyperlink named "lnkTopicTi tle" based on the results of a .FindControl()
Line 4 uses that hyperlink.

So... What would happen if line 3 wasn't able to find any controls matching your search? It's result would be null. Null would be assigned to lnkTopicTitle. Thus lnkTopicTitle would not have been assigned to an object, which is your error.

Try putting a breakpoint on line 4. This will let you check the values of your variables before the line executes.

You want to get into the habit of assuming that everything is going to fail and be different than what you expect. Add enough error compensation and checking to handle failures. In this case something like...

Expand|Select|Wrap|Line Numbers
  1.  if (lnkTopicTitle != null)
  2. {
  3. // do your thing here
  4. }
  5.  
Feb 23 '09 #2
Frinavale
9,735 Recognized Expert Moderator Expert
Could you please post the ASP code for your GridView (specifically the <columns> section).
Feb 23 '09 #3
JustRun
127 New Member
Yes I know, when i tried to put a break point , i found that lnkTopicTitle holds Null value, but i tried using FindControl() before and it was wotking very good.

I don't know why it gives me this null !!!
Feb 23 '09 #4
JustRun
127 New Member
Expand|Select|Wrap|Line Numbers
  1. <asp:GridView ID="grdTopicArch" runat="server" AllowPaging="True" AllowSorting="True"
  2.                         AutoGenerateColumns="False" BackColor="White" BorderColor="#CCCCCC" BorderStyle="None"
  3.                         BorderWidth="1px" CellPadding="3" DataKeyNames="TopicID" DataSourceID="sdsWeeklyTopic"
  4.                         Width="520px" PageSize="20" OnDataBinding="grdTopicArch_DataBinding" OnDataBound="grdTopicArch_DataBound">
  5.                         <Columns>
  6.                             <asp:BoundField DataField="TopicID" HeaderText="TopicID" ReadOnly="True" SortExpression="TopicID"
  7.                                 Visible="False" />
  8.                             <asp:TemplateField HeaderText="Title" SortExpression="TopicTitle">
  9.                                 <ItemTemplate>
  10.                                     <asp:HyperLink ID="lnkTopicTitle" runat="server" Text='<%# Eval("TopicTitle") %>'
  11.                                         OnDataBinding="lnkTopicTitle_DataBinding"></asp:HyperLink>
  12.                                 </ItemTemplate>
  13.                                 <HeaderStyle Font-Bold="True" Width="200px" />
  14.                             </asp:TemplateField>
  15.                             <asp:BoundField DataField="TopicDate" HeaderText="Date" SortExpression="TopicDate">
  16.                                 <HeaderStyle Width="150px" />
  17.                             </asp:BoundField>
  18.                             <asp:BoundField DataField="UserName" HeaderText="Editor" SortExpression="UserName">
  19.                                 <HeaderStyle Width="100px" />
  20.                             </asp:BoundField>
  21.                         </Columns>
  22.                         <FooterStyle BackColor="White" ForeColor="#000066" />
  23.                         <RowStyle ForeColor="#000066" />
  24.                         <PagerStyle BackColor="White" ForeColor="#000066" HorizontalAlign="Left" />
  25.                         <SelectedRowStyle BackColor="#669999" Font-Bold="True" ForeColor="White" />
  26.                         <HeaderStyle Font-Bold="False" ForeColor="#00576D" HorizontalAlign="Center" VerticalAlign="Middle"
  27.                             Height="50px" Font-Italic="False" />
  28.                     </asp:GridView>
  29.  
Feb 23 '09 #5
Frinavale
9,735 Recognized Expert Moderator Expert
@JustRun
Is the "sender" parameter in this method the HyperLink itself?


Why don't you just set the NavaigateUrl directly in your asp code:
Expand|Select|Wrap|Line Numbers
  1. <asp:TemplateField HeaderText="Title" SortExpression="TopicTitle">
  2.     <ItemTemplate>
  3.         <asp:HyperLink 
  4.                     ID="lnkTopicTitle" 
  5.                     runat="server" 
  6.                     Text='<%# Eval("TopicTitle") %>'
  7.                     NavigateUrl = "~/ChurchSubjs/ArchiveTopics.aspx">
  8.         </asp:HyperLink>
  9.     </ItemTemplate>
  10.     <HeaderStyle Font-Bold="True" Width="200px" />
  11. </asp:TemplateField>                           
  12.  
Feb 23 '09 #6
JustRun
127 New Member
I wanna send the parameter encrypted, like this:
lnkTopicTitle.N avigateUrl = "~/ChurchSubjs/ArchiveTopics.a spx?tid="+ Encryption.Encr ypt(sdsWeeklyTo pic.SelectComma nd[0].ToString())
Feb 23 '09 #7
tlhintoq
3,525 Recognized Expert Specialist
@JustRun
.FindControl() has a couple overrides. One includes a bool telling the method whether or not to search child controls. So for example you could have it search just a panel... or the panel and all the controls placed on the panel such as tab pages etc.

Maybe when you first tested it, it worked on your testing control, but then you placed that on a panel, into a tab control, onto a page... somehow you nested it but you aren't looking inside the right control collection, so you get are getting null back now where you didn't before.
Feb 23 '09 #8
bhupinder
32 New Member
Hi,

You can find control on rowdatabound not in databinding.
Expand|Select|Wrap|Line Numbers
  1.  protected void gvdata_RowDataBound(object sender, GridViewRowEventArgs  e)
  2.     {
  3.         if (e.Row.RowType == DataControlRowType.DataRow)
  4.         {
  5.             HyperLink lnkTopicTitle = (HyperLink)e.Row.Cells[1].FindControl("hyper");
  6.             Response.Write(lnkTopicTitle.NavigateUrl);
  7.             Response.End();
  8.             //if (lnkTopicTitle != null)
  9.             //{
  10.  
  11.  
  12.             //    lnkTopicTitle.NavigateUrl = "~/default.aspx";
  13.             //}
  14.         }
  15.     }
Feb 25 '09 #9
Frinavale
9,735 Recognized Expert Moderator Expert
You know, I have a feeling that you don't need to use the FindControl method because I think that the "sender" parameter is the hyperlink......

I could be completely wrong here but please check it out.
Feb 25 '09 #10

Sign in to post your reply or Sign up for a free account.

Similar topics

28
20309
by: Daniel | last post by:
Hello =) I have an object which contains a method that should execute every x ms. I can use setInterval inside the object construct like this - self.setInterval('ObjectName.methodName()', this.pinginterval); - but is there no way to do this without using the literal ObjectName? If I write 'this.methodName()' I get "Line 1 Char 1: Object doesn't support this property or method." in IE, and nothing happens in Firebird.
6
22515
by: Martin | last post by:
I'd like to be able to get the name of an object instance from within a call to a method of that same object. Is this at all possible? The example below works by passing in the name of the object instance (in this case 'myDog'). Of course it would be better if I could somehow know from within write() that the name of the object instance was 'myDog' without having to pass it as a parameter. //////////////////////////////// function...
15
6743
by: Carlos Lozano | last post by:
Hi, What is the right way to create an OCX COM component. The component is already registerred, but can't create an instance. I am using the reference to the interop module created. If I use javascript or vbscript it works. I will appreciate any help. I do the following (C#):
3
4212
by: Adam | last post by:
We have a web site that uses .vb for the web pages and .cs for a class module. We are getting the error in .NET 2.0 and VS 2005 beta 2. It does work with .NET 1.1. When trying to access a page that needs the class module I get an error on web site: Object reference not set to an instance of an object Here is where the error is:
4
1870
by: Luke Matuszewski | last post by:
Here are some questions that i am interested about and wanted to here an explanation/discussion: 1. (general) Is the objectness in JavaScript was supported from the very first version of it (in browsers) ? What about the new syntax of creating a object using { 'propName1':'propValue1', 'propName2':'propValue2', 'propName3':{ /* another object */ } } - from what version of JScript/JavaScript it was supported (from what browsers versions) ?...
12
5539
by: Andrew Poulos | last post by:
With the following code I can't understand why this.num keeps incrementing each time I create a new instance of Foo. For each instance I'm expecting this.num to alert as 1 but keeps incrementing. Foo = function(type) { this.num = 0; this.type = type this.trigger(); } Foo.prototype.trigger = function() {
6
2476
by: Shailen Sukul | last post by:
Observed a weird behaviour with object references. See code listing below: using System; using System.Collections.Generic; using System.Text; namespace PointerExceptionTest { /*
14
2390
by: Philipp Reif | last post by:
Hi all, I've got a little hole in my head concerning references. Here's what I'm trying to do: I'm calling a function, passing the reference of a business object for editing. The function clones the object, calls an editor dialog to let the user edit the object, and then - depending on the DialogResult - assigns either the clone/backup copy or the modified object itself to the reference. Maybe I'm thinking too much in pointer references...
3
2764
by: User1014 | last post by:
A global variable is really just a property of the "Global Object", so what does that make a function defined in the global context? A method of the Global Object? http://developer.mozilla.org/en/docs/Core_JavaScript_1.5_Guide:Defining_Functions doesn't actually give any insight.
2
2646
by: Ralph | last post by:
Hi I don't understand why it's not working: function schedule(imTop){ this.tdImagesTop = imTop; } schedule.prototype.selectEl = function() { alert(this.tdImagesTop);
0
8367
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
8889
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
8790
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
8650
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
7391
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
5677
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
1
2781
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
2017
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
2
1779
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.