0
votes
1answer
19 views

how to crawl data from asp.net control

What I am trying to do is to get data from a datagrid from a specific asp.net site... Now the problem for me is that it has multiple pages within the datagrid, so if I read the page source of that ...
0
votes
1answer
43 views

Add Title to DataGrid

I have a DataGrid item on an aspx page. The columns are BoundColumns that are populated through a DataSource/DataBind from an Oracle query. What I am trying to do is add a title attribute to each of ...
1
vote
1answer
34 views

Display query results efficiently in Razor

I've created an ASP.NET MVC 4 Web Application with Visual C# and with the "Razor" option HomeController.cs public ActionResult Tasks() { ViewBag.Message = "Tasks"; string ...
0
votes
0answers
24 views

Passing a parameter to a usercontrol within OnRowDataBound of a GridView

I'm trying to pass a parameter to a web user control within a gridview control. I have a web user control declared at the top of my form. <%@ Register Src="Controls/BasicListing.ascx" ...
0
votes
0answers
14 views

Is it possible to use embedded code expressions in markup to set sortExpression?

I've got an asp.net page with datagrid bound to the DataTable. Protected class TableColumnNames stores column names for that datagrid. As for now, data bindings are something like ...
1
vote
3answers
47 views

Changing Value to DataGrid cell

I have a function in my code-behind that sets a datagrid. I create a new blank column and add it to my datagrid and I want to add a value to the column for only one row that matches an object id. ...
0
votes
1answer
76 views

How to add checkbox to datagrid in vb.net

I have a datagrid with a set of columns showing data from a database. I create the datatable and add it to the datagrid and then bind the source. this works great and now I would like to add a column ...
0
votes
2answers
31 views

Change value of cells before its rendered into datagrid

I have a web app i'm trying to write that will get the percentages of supplies left in a printer. and display that in a friendly 1-100 percent number. to get that number i must multiply what is left ...
0
votes
1answer
67 views

set the value of inputbox inside a data grid through VB code

I have a asp datagrid one of the column is having one input <asp:DataGrid ID="dgItem" runat="server" Width="100%" CssClass="TableList" AutoGenerateColumns="False" ...
-1
votes
1answer
31 views

Client-side binding of a datagrid to List<>

In my ASP.NET MVC Webb app, I want a page to hold a DataGrid with ButtonColumns. To this I have a List<> of items that I want to represent in the DataGrid. By use of a textbox, I want the app (on ...
0
votes
1answer
57 views

Displaying last column of ASP DataGrid( not gridview) in next line

I am using a datagrid in which I want to display my last column in next line or row and the next row in grid will shift down. Name Age Sex Subject Mac 24 M English, Science Maths, ...
0
votes
1answer
108 views

Set ASP DataGrid row color based on cell value

I have an ASP:DataGrid which I am displaying records in. The records are pulled from an SQL Server 2008 R2 database in to an SqlAdapter which in is used to fill a DataSet and that is bound to the ...
4
votes
1answer
111 views

Multi-select DataGrid

I have to make a Multi-select DataGrid in asp.net for which I have created a Class(MultiGrid) in Code behind(C#). namespace Portal { public class MultiGrid : DataGrid { // Constructor that sets ...
0
votes
1answer
122 views

Asp.net Update GridView with AutoGenerateEditButton

How do I use the AutoGenerateEditButton to update my gridview Table (has a dataset bound to it -Dataset Retrieved from an sql database) --Removed the Broken code in the question to put Fixed code ...
0
votes
1answer
104 views

How to get selected cell value on DataGrid SelectedCellsChanged in wpf?

I want to get cell value on DataGrid selected cell Changed event in my wpf application. Please anybody help me out of this.
0
votes
1answer
106 views

Adding link dynamically to Template Field

I need to replace the link for each data bound item. I already checked out the databound event of the datarow. The problem with that is I can't control where the link shows up. I'm trying to stay away ...
1
vote
0answers
41 views

To Access the values of a datagrid from User control to an aspx page

I have an application, in which on an aspx form I am loading a web user control at runtime based on the selected input. This user control contains a datagrid, which is populated on page_init of the ...
1
vote
2answers
166 views

Async/partial postback datagrid issues

I'm trying to get an aspx datagrid control to perform a post that results in a partial postback (asynchronous) rather than a full postback. I've added scriptmanager, an update panel, and a content ...
0
votes
1answer
80 views

ASP.NET adding rows to DataGrid with JQuery

I'm trying to add a new row after a specific row in a ASP.NET DataGrid with JQuery. I already added a new row after every row doing: $('<tr class="sep"><td ...
2
votes
1answer
85 views

bind data to telerik datagrid in asp.net

I have the code below , i bind data from database to telerik data grid "gridCommon" . gridCommon.DataSource = DbContext.MTO_General_Commons.ToList(); In my aspx , <telerik:RadGrid ...
1
vote
2answers
632 views

Multiple column sorting in Gridview?

Hi I want to Sort Multiple column In a gridview like shown here Hierarchical (Multi-column) Sorting for the .net GridView? I did my home work My aspx looks like <%@ Page Language="C#" ...
0
votes
1answer
16 views

Should I reapply the DataSource property when paging a DataGrid?

I'm paging a DataGrid, and the OnPageIndexChanged method looks like this: protected void dgSurvey_PageIndexChanged(object source, DataGridPageChangedEventArgs e) { ...
0
votes
2answers
38 views

DataGrid— one column uses different data from the others

I have a DataGrid I'm binding to a DataTable, and displaying three BoundColumns as a result. I would like to have a fourth column that connects with different data-- for instance, if column #3 in ...
0
votes
1answer
22 views

Find or assign a clientID to a HyperLinkColumn?

We're using the ASP.Net DataGrid class which has a HyperlinkColumn, among other BoundColumns. When the DataGrid renders on the screen it has an ID value (as assigned in the control on the aspx ...
0
votes
1answer
150 views

How to get Textbox data out of a Datagrid

I have a textbox used for quantity alterations in a shopping cart that is in the form of a datagrid. When i click on the edit linkbutton it allows the textbox to be altered. What I'm trying to get is ...
1
vote
2answers
206 views

How to add percentage sign and pp into a asp.net gridview

I'm using Visual Studio 2010 and developing in Visual Basic. I have a gridview in a web form and I need for some cell to show - % beside the number - pp (percentage point) beside the number - just a ...
0
votes
2answers
292 views

DirectoryInfo GetFiles() filter grid

I am working on a page that displays the pdf files in a specific directory in a grid, along with a link to the file. I am modifying Scott Mitchell's example here: ...
0
votes
0answers
205 views

Child Control GridView not binding

I have a quick question perhaps someone can help me. I have an ASP.NET Page and inside this asp.net page I have an ASCX Control. On my .net page form load it binds the GridView in the Child Control ...
1
vote
0answers
27 views

Datagrid behavior differs on server

It may be impossible to answer this question, but maybe someone met this issue and can provide me some ideas. We are converting all of our apps to framework 4.0. We were on 2.0. On one of my asp app, ...
0
votes
1answer
314 views

Editable grid in ASP.net

I was looking for a code of ASP.net editable grid view.In some of website i got the coding.But it had a extra button like edit or update.On clicking to that button the grid becomes editable.You can ...
1
vote
2answers
123 views

How to clear HTML table after each use in a web DataGrid using VB.NET?

I want to display the query result in the table using my code below. My problem is that in the 2nd row of DataGrid the query result of 1st and 2nd row are displayed. Similarly in 3rd row 1st 2nd and ...
0
votes
1answer
40 views

cant bind to datagrid?

<mesh:SecurePanel runat="server" ID="retentionInvoiceDue" WebMasters="true" Admins="true" style="text-align:left; font-size:small;"> <a class="alert" ...
0
votes
1answer
227 views

Accessing the Checkbox inside Datagrid on Button click Asp.net

bool checked1 = (datagrid1.FindControl("CheckBox1") as System.Web.UI.WebControls.CheckBox).Checked; I am getting Object reference not set to an instance of an object. How do i access from inside ...
1
vote
0answers
31 views

Issue with Datagrid TotalRows and Databind()

I have issue with the following code e.TotalRows = data.Count(); //getting exception Jqgrid1.DataSource = data.Skip((e.NewPageIndex - 1) * ...
2
votes
1answer
102 views

Implementing editing in ASP.NET DataGrid when data comes from several related tables

Today while working on one of my client's project I came up with an issue for which I am unable to figure out the solution. So I am Throwing it on to you guys. I am using a databound GridView ...
0
votes
1answer
375 views

Change the background color of row in datagrid

I have a datagrid and it has a checkbox in rows. I want to change background color of row when checkbox is clicked. Example code: <asp:DataGrid ID="Grid" runat="server" DataKeyField="KeyID" ...
0
votes
2answers
115 views

Remove row in datagrid

In ASP/VB.net In my DATAGRID i'd like to remove a row in Grid_ItemDataBound I have already try How to remove row from datagrid? But is not really that i need
0
votes
1answer
54 views

How to fetch value from datagrid to another form in asp.net

I have a Datagrid on one page, when user clicks on cell of datagrid, it should open another form with labels and textboxes and it should fill it with relevant data fetching from the SQL Database. I ...
0
votes
1answer
172 views

Nested Data grid using ASP.Net 1.1 controls

Has anyone worked on creating the Nested Data grids in ASP.Net 1.1? Outer Grid: I would like to have the rows to be expandable. On click of "+" on each row, I would like the inner data grid to be ...
0
votes
0answers
92 views

ASP.NET How can I bind datagrid header with only one value?

I have a stored procedure that brings dates for two kind of work (guard and support guard), and the assigned employees, orderer by week (both works must be done in the same week, parallel works). I ...
0
votes
0answers
117 views

RADGrid paging issue

I am using the grid to display data with paging. However, I am facing the following issue: Eg. If my datasource has 55 records and the page size is 20 (default). I get 3 pages and clicking on 1, 2 ...
0
votes
2answers
141 views

Resizing grid by client screen size

I want to set datagrid's size at page load by client screen size. Is there any way to get this size at page load or other page events on server side? I use Request.Browser.ScreenPixelsWidth and ...
1
vote
1answer
80 views

How to set value to asp:datagrid from child window?

Thanks that open this page:) I'm new for asp and looking for the way to set some text values into cell of asp:datagrid. I wanted to open a child window from datagrid which need to show some ...
1
vote
2answers
175 views

How to rebind datagrid in asp.net 1.1 without postback?

I need to have datagrid(3 columns) to which the values will be added using 3 textboxes and a button(Add) on the same page. If click on Add button the value should append to datagrid without page ...
0
votes
1answer
704 views

asp.net GridView, show multiple columns in multiple rows inside a single column

suppose there are 8 columns in a asp.net gridView. col1, col2, col3, col4, col5, col6,....I would like them to arrange in this way : ----------------------------- col_one | col_two | col_three ...
0
votes
1answer
73 views

How to attach a scrollbar to the right of a datagrid inside a div?

I am creating a scrollable div containing a Datagrid like so:- <div id="myDiv" style="overflow: auto; height: 300px; " onscroll="myFunction();"> <asp:DataGrid id="gradesGrid" ...
0
votes
1answer
46 views

How do I suppress spurious line breaks in a DataGrid?

I have a DataGrid created like so:- <asp:DataGrid id="myGrid" BorderWidth="1" CellPadding="3" AutoGenerateColumns="true" runat="server" ...
0
votes
1answer
281 views

binding navigateURL to datagrid

I've created a datagrid and linked it to one of my tables from my database, then I want to add a hyperlink which should bind to a column from the table <asp:DataGrid ID="DataGrid1" runat="server" ...
0
votes
0answers
89 views

datagrid, label, hyperlink, binding

Im a beginner at this asp.net dynamic data and have just been completing a few tutorials on youtube etc... I was hoping maybe now to create a datagrid, (1) which binds labels to fields (exmaple) ...
1
vote
1answer
117 views

How to scroll to selected in a DataGrid?

I'm displaying a Datagrid like this and inviting the user to make a selection... <div id="gradesDiv" style="overflow: auto; width: 380px; height: 300px"> <asp:DataGrid id="gradesGrid" ...

1 2 3 4 5 9