Getting Error While Tracking Datakey

Feb 19, 2011

i am getting this error while tracking my datakey.. i am not sure why my datakey index is coming out of range.. here is my code :

protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
{
var dataKeys = GridView1.DataKeys[e.Row.RowIndex];
dataKeys.Value.ToString();
Label1.Text = "The key field value for the displayed record is " + dataKeys.Value.ToString();
}

Header Part Of the GridView:

</ItemTemplate>
</asp:TemplateField>
</Columns>
<FooterStyle BackColor="#5D7B9D" Font-Bold="True" ForeColor="White"
/>
<PagerStyle BackColor="#284775" ForeColor="White" HorizontalAlign="Center" />
<SelectedRowStyle BackColor="#E2DED6" Font-Bold="True" ForeColor="#333333" />
<HeaderStyle BackColor="#5D7B9D" Font-Bold="True" ForeColor="White" />
<EditRowStyle BackColor="#999999" />
<AlternatingRowStyle BackColor="White" ForeColor="#284775" />
</asp:GridView>
<script language="javascript" type="text/javascript">
function viewProfile(selectedRowIndex, firstName) {
//alert(firstName);
//var customGridView = document.getElementById('<%= CustomGridView.ClientID %>');
var customGridView = document.getElementById('GridView1');
if (customGridView) {
var row = customGridView.rows[parseInt(selectedRowIndex) + 1];
//var cell = customGridView.rows[parseInt(selectedRowIndex) + 1].cells[0];
// alert(row.cells[0].innerHTML);
// alert(row.cells[1].innerHTML);
// alert(row.cells[2].innerHTML);
// alert(row.cells[3].innerHTML);
// alert(row.cells[4].innerHTML);
window.open('detatil.aspx?coaid=' + row.cells[1].innerHTML + '&fnomia=' + row.cells[2].innerHTML, "", "scrollbars=no,height=300,width=300");
}
}
</script>

The error is: Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index

View 1 Replies


Similar Messages:

Forms Data Controls :: GridView.DataKey Error: No Default Member Found For Type 'DBNull'?

Sep 16, 2010

I am binding SQL data to a GridView. The GridView's DataKeyNames property is set to the SQL column called "utID"

I know that within the SQL results, some of the utID values are NULL. After databinding to the GridView, I need to enumerate through the GridViewRows an read the DataKey values. However, when I try this I get the following error:

No default member found for type 'DBNull'. I am using the code below.

What object types are stored within DataKeys (I thought it was just integers or strings)

How to handle a NULL datakey value to prevent this error occurring?

I don't want to use Try Catch because it's too much of a 'hack'

[Code]....

View 6 Replies

Get DataKey Values In GridView RowCommand?

May 12, 2010

I have a GridView with an associated DataKey, which is the item ID. How do I retrieve that value inside the RowCommand event?

This seems to work, but I don't like the cast to LinkButton (what if some other command is firing the event?), and I'm not too confident about the NamingContainer bit.

LinkButton lb = (LinkButton)e.CommandSource;
GridViewRow gvr = (GridViewRow)lb.NamingContainer;
int id = (int)grid.DataKeys[gvr.RowIndex].Value;

I'm aware that I could instead pass that ID as the CommandArgument, but I chose to use DataKey to give me more flexibility.

I'm also aware that it's possible to use a hidden field for the ID, but I consider that a hack that I don't want to use.

View 1 Replies

GridView Row Update With Datakey Values?

Jan 15, 2010

What seems to happen is 'GridView1_RowUpdating' gets fired, at this point newEnglish, newFrench, and newGerman all have the new values as they are passed into 'Logic.Update'. Then the update functions updates correctly, but once the 'GridView1_RowUpdating' sub ends, it seems to call Logic.Update another time, and this is where the new values get lost for French and German (datakeys) but not English.

Protected Sub GridView1_RowUpdating(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.GridViewUpdateEventArgs) Handles GridView1.RowUpdating
Dim newEnglish As String
Dim newFrench As String

[Code]....

View 2 Replies

Data Controls :: How To Get ID (DataKey) From GridView

Mar 26, 2016

This is Film table in database

ID Daste Preference

1 film 5
2 serial 4
3 serial 1
4 film 2

And bind gridview from this table and ordred by Preference Column I put Linknbutton in gridview that code is:

protected void LinkButton11_Click(object sender, EventArgs e) {
GridViewRow row = (sender as LinkButton).NamingContainer as GridViewRow;
int id = Convert.ToInt32(GridView2.DataKeys[row.RowIndex].Value);
using (SqlConnection conn = General.GetConnection()) {

[Code] .....

Oroblem is in this line:

int id = Convert.ToInt32(GridView2.DataKeys[row.RowIndex].Value);

I want when I click on linkbutton it use Id but here it use Preference data How I can define that according to Id column it go to

Response.Redirect("EditFilm.aspx? &id=" + id);

View 1 Replies

MVC :: Bug Tracking System With Sourcecode Available?

Oct 9, 2010

I need a bug tracker software for our application development and sql script development (small 2-3 person team)...

I am new to asp.net MVC and thaught it would be nice if one was available built on the asp.net mvc platform and available with source code.

View 2 Replies

Bug Tracking In Visual Web Developer?

Apr 1, 2010

Is it possible to track bugs in a visual web developer website? I want to be able to step through the code so I can see exactly what it is doing but am not quite sure how to do this.

View 8 Replies

Tracking Ip Address And Country Name?

Apr 19, 2010

Yesterday i saw a site in which, site is listing the ip address and country name, saying that recently visited members (a list of ip address with country name,city name). Can i know how can i track that information any reference or any code.

View 1 Replies

Web Forms :: Tracking The Clicks On Url?

Feb 9, 2010

<IMG
src="filepate of image"
alt="Click to view this company's profile" [code]...

Above is the html code. The code says it has a picture which has two links. Now can anyone tell me how can i track on the click on image for a perticular url. Using asp.net say url1. I need to store the clicks report into the database using vb.net.

View 2 Replies

Message Tracking On A Mobile Using ASP.net?

Oct 15, 2010

I have a ASP.Net wesite developed using c#, ASP.Net,Oracle and Ajax.I want to send an email to the user from HP Quality Center (QC) and get the result from the user and store it the Quality Center Defect.QC will automatically send the email.The user should be able to provide the result like (Yes/No) even from his mobile by accessing the email or a system.How can we keep track of the reply send by the user and using which method?I can take the help of my ASP.Net website to route the message.For Example, when the user send the reply,the website should be some how able to parse the email and store this into QC or database.

View 4 Replies

Update Gridview - Use SelectedDataKey.Value.ToString() To Get Datakey?

Sep 2, 2010

after my grid view updates a record I would like to run some code, I have tried to use SelectedDataKey.Value.ToString() to get the datakey. However it is null, the record updates so the value must be stored somehow?

View 1 Replies

Unable To Get The Datakey Value Of A Selected Row In GridView For Use In FormView

Sep 15, 2010

I have a gridview like this :

[code]....

I have done this before "n" number of times but I am not able to get it working this time. The trouble is that when the call for the Select Method of the formview goes to the relevant function - "GetCustomerByCusnum" I have a null value in its parameter "cusnum".

I know that I can write a selecting event and using CommandArgument, parse the value of the selected row and pass it into the Select method as a value but I dont want that solution. I know it works without the "Selecting" method but I cant recall how.

View 1 Replies

Forms Data Controls :: Get The Gridview Datakey Value?

Jan 5, 2011

I have a gridview with datakey value

in save button click i want to get the gridview datakey value

Dim _id As Integer For Each row As GridViewRow In Me.gridviewi.Rows Next

View 2 Replies

Forms Data Controls :: Getting DataKey Value From GridViewRow?

Mar 9, 2010

I need to loop through all the gridviewrows, and call a function for every row using the datakey. How do I get the datakey of each row?

My code looks something like:

foreach(GridViewRow gvr in GridView1.Rows)
{
DoSomething(gvr.INSERT DATA KEY OF THIS ROW HERE);
}

View 1 Replies

Forms Data Controls :: How To Get GridViewRow From Datakey

Jan 12, 2011

I have the DataKey value, I want to use that to get the GridViewRow and retrieve information from various columns - I see lots on information on how to get the datakey from a gridview row, but not the reverse.

View 4 Replies

GridView Paging - Unable To Get The Correct Datakey Value?

Aug 5, 2010

GridView

<asp:GridView ID="GridView1" runat="server" AllowPaging="True"
AllowSorting="True" PagerSettings-Position="TopAndBottom"
PagerSettings-Mode="Numeric" PageSize="40" CellPadding="4" DataSourceID="dsEquipmentGridView"
ForeColor="#333333" GridLines="Horizontal" Style="font-size: x-small" AutoGenerateColumns="False"

[Code]....

For the first page loaded, it shows the correct DataKey value if I click on the command field.

However if I change to the next page of results, upon selecting a record the corresponding value is incorrect. It seems to keep the previous page information. How do I overcome this?

EDIT:

In the GridView1_SelectedIndexChanged method, I used the following:

[Code].....

I am unable to get the correct value after paging.

View 1 Replies

VS 2008 Datakey - Adding Row Dynamically To Gridview

Jul 27, 2011

I have a situation where I needed to add a row to my gridview. So say I have rows 3, 4 and 5.

My Datakeys are defined as "ID, CostingID". I did that so I can reference the two ID values I need when saving records.

here is the code in my RowDataBound event.

Basically if it is a datarow, I'm adding the value dataitems so I can get a sub total in the footer row.

Then, I have a boolean field called isDisbursement. So I sort my data by that field. So all records with the disbursement flag as true will display first.

Then as soon as the disbursement flag hits false I add a row to display the Total of the disbursement records value field.

All this works. My problem is, because I added a row at index 4 it inherits the datakey of the row that was at index 4 before. So when I'm looping through the grid rows to save the values I'm having a problem. I've attached an image so you will understand better what I'm trying to achieve. The "Total Disbursements" is the row I added. But it gets the following rows datakey because it is now at index 4.

when I do this, as soon as I reach row 4, although it doesn't have a CostingID it gets the CostingID of row 5 that used to be row 4:

Code:
Dim CostingID As Long = Convert.ToInt64(Me.grvCostings.DataKeys(row.RowIndex).Values("CostingID").ToString)
Dim strValue As String = CType(row.FindControl("txtValue"), TextBox).Text

Code:
If e.Row.RowType = DataControlRowType.DataRow Then
If Not IsDBNull(DataBinder.Eval(e.Row.DataItem, "value")) Then
_SubTotal += Convert.ToDecimal(DataBinder.Eval(e.Row.DataItem, _
"value"))
End If

[Code] ....

View 1 Replies

Tracking Old Uploaded Files On Web Server?

May 10, 2010

Users can upload files to the server, which are stored effectively forever.

A few of my ideas involve logging every upload, but then the files are usually referenced in html which isn't easy to track.

Files can sit unused but still be referenced. I could do a fuill text search on these, but that's pretty brute force.

View 1 Replies

Software For Tracking How Popular A Web Site?

Nov 2, 2010

Is there a (free!) software/components that I can use to track how my web site is being used - which pages are most popular, how many times was the site visitied today, yesterday etc...

View 3 Replies

SQL Server :: Tracking Statement On A Table?

Feb 12, 2011

I am using sql server 2005 on my local PC. I have the same copy of the database on a shared hosting environment.I need to transfer daily transaction on some tables in my local database to the remote database. My remote database ison the shared hosting environment so i don't have much control on it.

I want to capture all the DML statement on tables and then at the end of day will execute those DML statement on theremote database.Kindly suggest how can i trace DML statement on database tables.

View 1 Replies

MVC :: Tracking EntityState Across Post To Controller?

Jan 13, 2011

i have a viewmodel with two entities. one is named Customer. in view validation is enabled for Customer using the entity state (isvalid, ...)

in to post action to the controller the entity state is "Detached". I believe this is as it should be.

My question is: How can the Customer Entity be checked for state change? I can create a new entity to check, but this has its own issues.

View 5 Replies

C# - Difference Between POCO And Self Tracking Entities?

Jul 6, 2010

I have POCO's in a separate project and now I need Self Tracking Entities. Does anyone know if I need to generate new POCO's that are self tracking and they will replace my current POCO's? Or, do I setup self tracking entities in addition to my current POCO's?

View 1 Replies

Visually Tracking / Monitoring Workflow(WF) 4.0?

Feb 18, 2011

I am planning to build a custom web application in ASP.NET 4.0 using WF 4.0, the user wants ability to modify workflows himself, for this we will be using a WPF client which the user can use and we will do workflow re-hosting, lots of blogs and guidance is available for this. But I am not sure how to the meet one requirement where the user wants to see/track a visual representation (diagram/image) of the workflow, depicting what stages are over, what is the current stage etc. This needs to be done on a web page.Possibly the same workflow with icons depicting status. This is something similar to the visual available for Visio workflows in SharePoint 2010. Even AgilePoint workflows provide such a view.

View 2 Replies

C# - Entity Framework Change Tracking?

Oct 11, 2010

Is there any way of tracking EF entities changes between contexts for ASP.NET applications?

Self-Tracking entities doesn't work well for me as it is primarily designed for WCF. And all approaches for tracking changes for POCO I have found are oriented on shared context.

View 1 Replies

Forms Data Controls :: Set FormView PageIndex By DataKey Of Row?

Mar 17, 2010

Does any one know how set the FormView PageIndex to a DataItem with a specified DataKey?

Like:

DataKey dataKeyVal = myGridView.SelectedDataKey.value
myFormView.PageIndex = FormView.DataItems.GetByDataKeyVal(DataKey dataKeyVal).Index

The FormView is bound to the same ObjectDataSource as the GridView and the FormView uses the autoPaging so I can't just use a separate DataSource for the FormView with just one parameter being the ID.

There must be a way to set the FormView PageIndex by a Datakey value.

View 4 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved