Forms Data Controls :: GridView Associate The Number To The Right String Data?

Dec 26, 2010

I have a table that shows datas from a SQL DB. Some of those datas is numeric ( 1,2,3) and in another table I got the name that represents each number.

ex:

1= Goalie
2= Defence

So I did a Class_filters, in which I associate the number to the right string data.

I was wondering how can I do that in GridView? Is it possible?

View 2 Replies


Similar Messages:

Forms Data Controls :: Associate Value From A SQL Query?

Aug 10, 2010

i have this code that show a simple table

[Code]....

Now, i must obtain every single value extracted (field1 and field2) in my page.

I tried with

<asp:Label ID="Label1" runat="server" Text='<%# Eval("field1") %>'></asp:Label>
and (in .vb)
Label1.Text = SqlDataSource1.SelectParameters("field1").DefaultValue

but it doesn't work

View 4 Replies

Forms Data Controls :: How To Display The String Data Stored In A String[] Variable Into Gridview

Jul 16, 2010

How to display the string data stored in a string[] variable into gridview?

View 9 Replies

Forms Data Controls :: Show String Instead Of Number In Grid View?

Mar 24, 2011

in my colum values like: ,2, 1,,3 1,2,3 1 , ,3 i want to show some text instead of these number .... here is my code
Report Category: ---------------------------------------------------- public string reportcategory(object check) { string[] report_type = check.ToString().Split(','); foreach (string rtk in report_type) { if (Array.IndexOf(report_type, rtk)
!= -1) { if (rtk == "1") { string value = "Weekly"; return value; } else if (rtk == "2") { string value = "Daily"; return value; } else { string value = "Monthly"; return value; } } } } i have also confusion here suppose i have 1,2 then how to write code to show text like "weekely,Daily

View 18 Replies

Forms Data Controls :: Limit Number Of Selected Rows In Data Source For GridView?

Apr 30, 2010

I'm sure it was discussed hundred of times, but maybe this time will elucidate some new points )

The question is: do I need to limit number of selected rows in data source for GridView?

When I use paging in GridView does limiting selected rows make GridView work faster?

Now I use ObjectDataSource with Linq in functions.

[Code]....

Does this make sense or I can just use LinqDataSource without thinking of selected rows?

View 2 Replies

Forms Data Controls :: Change The Date Format From String To String At Gridview?

Feb 24, 2011

i facing a problem to change the date format at gridview display.

below is my coding:

[code]....

View 2 Replies

Forms Data Controls :: Formatting A Number In A Gridview - VB.NET

Mar 18, 2010

I'm trying to get numbers converted to the proper look I prefer. But, it doesn't seem to be working.

I'd like the number to read 1,092, but instead it's listing it as 1092.0000000

Below is my EVAL as well as the code behind for this.

For the eval, I had to add the Convert.ToString to handle DBNULL items.

[Code]....

View 6 Replies

Forms Data Controls :: Number Of Page Of Gridview?

Nov 20, 2010

I have a web page and a Tabcontainer in it, and in my tabcontainerthere is a Gridview , in below there is my code that i want if i change one filed to trure, that row become pink,and it works correctly, but now i want to have the number of the page of the last pink row in my Gridview,and keep it in a global variable , and
the next time when i open my web page and come to that Tab, that page of the gridview be appear(the page of the last pink row), not the first page of it.

[Code]....

View 1 Replies

Forms Data Controls :: Gridview TemplateField Show String According To Received Data?

Jul 26, 2010

What I want to do is to replace number with a name. So if in the Month Column it receives five "1" it changes those 5 "1" to JANUARY.

Is it possible? This is because unfortunately I can only arrange my months by number and not by their name, this because of my queries and tables format, so, I thought maybe I can tell the gridview to change the month number to their relative month name.

View 8 Replies

Forms Data Controls :: Getting Index Number Of GridView Control?

Oct 8, 2010

I am trying access the row index on this GridView, but the e.CommandArgument gives me a value of an empty string "" , so the the error handler kicks in. What do you think I am missing.

[code]...

View 3 Replies

Forms Data Controls :: Page Number Wrapping At Top Of Gridview?

Nov 2, 2010

In a gridview control, what is the property I set to wrap the page numbers at the top and bottom?

View 4 Replies

Forms Data Controls :: Create GridView Dynamically With Any Number?

Oct 28, 2010

[Code]....

View 6 Replies

Forms Data Controls :: How To Display Gridview Column Number

Feb 20, 2011

how to retrieve the column number in gridview

i am able to get the row number using this syntax <%# Container.DataItemIndex + 1 %>

but what about column number?

View 3 Replies

Forms Data Controls :: Generating Serial Number In Gridview?

Jan 11, 2011

I want to generate serial number in gridview but the serial number should be equal to the count of records for a particular column(in my case No. of Villages).

I know how to generate serial number but i am unable to generate number of rows equal to the number of records of my datatable column(Village_Name---say for example 45 rows--- any no. of rows)

View 4 Replies

Forms Data Controls :: Generate A Gridview With A Fixed Number?

May 5, 2010

how i can generate a gridview with a fixed number of rows that is entered from a textbox

my gridview has a column with dropdownlists the others contains textboxes?

View 3 Replies

Forms Data Controls :: Show Text Instead Of Number In Gridview?

Mar 30, 2010

I have a gridview which takes numbers from the table and shows them. There are 4 numbers (-1 / 0 / 1 / 2)

Since the numbers do not mean anything to the user, I would like to assign them words.

-1 = Bad
0 = OK
1 = Groovy
2 = Superduper

So, I would like the data taken from the table to be changed to the word and that populate the datagrid.

The code behind is in C#

View 4 Replies

Forms Data Controls :: Get The Number Of 2'values In Column Of Gridview?

Jan 1, 2011

The number of 2'values in Column of gridview?

View 5 Replies

Forms Data Controls :: Get The Page Number In The Bottom Of GridView?

Jan 28, 2011

I need to put the number of the page selected in gridview in evidence at the botton of the page.

How can i get the page number in the botton of Gridview.

View 3 Replies

Forms Data Controls :: Getting An ID Number From The Gridview To Populate The Insertitemtemplate?

Jul 8, 2010

I am new to asp.net and am hoping this is an easy question. I have a gridview and then I have a couple of dataviews whose sqldatasources looks to the gridview' to be populated based on an ID number in the first column. If there are no rows returned to the dataviews, I generate an insertitemtemplate.

The problem is that I want to pass the value from the ID column in the Gridview over to the insertitemtemplate (because I don't trust the end user to get the ID right). The insertitemtemplate is now blank in all fields. ( I'm doing this in C#).

View 1 Replies

Forms Data Controls :: Gridview: Showing The Number Of Views?

Apr 23, 2010

I have a gridview with an hyperlink item pointing to a "detailspage.aspx" allowing users to read the full article. What I would like to do is to add a column to the GridView where it is possible to read the number of times a specific article has been read, that is any single time a user has clicked onm the hyperlink.

View 16 Replies

Forms Data Controls :: How To Set Checkbox In Gridview For Maximum 'N' Number Of Selections

Aug 19, 2010

I have a gridview, in which i placed checkbox as Itemtemplate. My need is to restrict the user from selecting more than 'N' number of selections.

Eg: Gridview contains 50 records, that means 50 check boxes.

Max permitted selections: 10.

After the 10th checkbox selection, user should be prompted that..

"No more selections.. blah blah... "

Should i go for looping through records.. or is there any better way..

View 5 Replies

Forms Data Controls :: How To Find Out The Number Of Rows In A Child Gridview

Apr 30, 2010

I've got a nested gridview and I'm looking for a way to determine the number of rows in a child gridview, so far no luck. Has anyone come across a solution for this ? Both of these gridviews are bound using ObjectDataSource.

View 6 Replies

Forms Data Controls :: How To Create Gridview With Fixed Number Of Rows

Jul 27, 2010

I am trying to create a gridview with a fixed number of rows (5). If the gridivew contains no items then five blank rows will be shown. For each row that a user enters then a blank row will be removed so that there will be a constant number of rows displayed. How might I go about doing this?

View 5 Replies

Forms Data Controls :: What Is The Code To Count Number Of Rows In Gridview

Nov 15, 2010

I have a Gridview and I want to return the number of rows (excluding header row) in it into label1.text.

How to write this code ?

View 2 Replies

Forms Data Controls :: Display Last Page Number In Gridview Paging?

Dec 30, 2010

I want to display the paging format like 1 2 3 4 5 ....... 20 in gridview pagnation

here total number of pages count is 20.

if user clicks on the 20,then the page no 20 will be display..

and the user cilcks on .....,the next five pages has to display with last page number like 6 7 8 9 10 ....... 20

View 3 Replies







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