Search

You searched for the word(s): userid:707423

Matching Posts

  • Re: How to call RowDataBound event from code?

    Good day jibarz , Why you're not using the .FindControl("ControID") to get the GridView Control ?! Best Regards
    Posted to Data Presentation Controls (Forum) by XGmarX on 3/4/2009
  • Re: item template

    Good day lewisbasham1987 , Please, do the following : <% @ Page Language ="C#" AutoEventWireup ="true" CodeFile ="Default.aspx.cs" Inherits ="_Default" %> <! DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> < html xmlns ="http://www.w3.org/1999/xhtml" > < head runat ="server"> < title > Untitled Page </ title > <
    Posted to Data Presentation Controls (Forum) by XGmarX on 3/3/2009
  • Re: How to call RowDataBound event from code?

    Good day jibarz , Please, do the following : 'add the following in page_load If Not Me .IsPostBack Then Dim gvHojaProyecto As New GridView() AddHandler gvHojaProyecto.RowDataBound, AddressOf gvHojaProyecto_RowDataBound End If :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: then out of the Page_Load write the following : Private Sub gvHojaProyecto_RowDataBound( ByVal sender As Object, ByVal e As GridViewRowEventArgs) 'write your code here End Sub Please, let
    Posted to Data Presentation Controls (Forum) by XGmarX on 3/3/2009
  • Re: Using dropdown with two datavalues

    Good day , Just like what MetalAsp.Net said, seperate these values with a anything then use the String.Split(''') //lets say thats your dropdown 2 values seperated by - String str = "whatever-whatever" ; String [] strArray = str.Split( '-' ); //now you can access value 1 and 2 using the following //String value1 = strArray[0]; //String value2 = strArray[1]; Please, let me know if that helped... Best Regards,
    Posted to Data Presentation Controls (Forum) by XGmarX on 3/3/2009
  • Re: Showing only cells with values

    Good Day beleami , Please, do the following : SELECT * FROM TableName WHERE NumberInStock IS NOT NULL AND NumberInStock > 0 Note: NumberInStock : Is the column's name that you want to check its value Please, let me know if that helped... Best Regards,
    Posted to Data Presentation Controls (Forum) by XGmarX on 3/2/2009
  • Re: getting data to tooltip

    Dear assafg2 , The following is how to do that : <% @ Page Language ="C#" AutoEventWireup ="true" CodeFile ="Default.aspx.cs" Inherits ="_Default" %> <! DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> < html xmlns ="http://www.w3.org/1999/xhtml" > < head runat ="server"> < title > Untitled Page </ title > </
    Posted to Data Presentation Controls (Forum) by XGmarX on 3/1/2009
  • Re: How to display only selected items in a table?

    Good day RedcarJohn , Post edited, I've added the link... If you found it not solving your problem and none solved it till tomorrow, I'll make a sample for you. Best Regards,
    Posted to Data Presentation Controls (Forum) by XGmarX on 2/28/2009
  • Re: Help with Alphabet Paging In A GridView Control

    Good day cdemott , Please, check the following two links [ just need to be converted by any online converter to VB ] http://www.experts-exchange.com/Programming/Languages/.NET/ASP.NET/Q_22560744.html http://aspdotnetcodebook.blogspot.com/2008/03/how-to-add-alphabet-paging-in-gridview.html Please, let me know if that helped.. Best Regards,
    Posted to Data Presentation Controls (Forum) by XGmarX on 2/26/2009
  • Re: item template

    Good day lewisbasham1987 , Yes its possible, by creating a fake datatable [make sure it has all the columns you need] create/add one new empty row of that datatable. bind it to the control. Please, let me know if that helped.. If not I'll make a code sample if it were unsolved after 2 days [ off work ] Best Regards,
    Posted to Data Presentation Controls (Forum) by XGmarX on 2/26/2009
  • Re: Sum of Gridview column

    Good day Alpheus , Please, check out these 2 links [ has different approaches ] http://www.asp.net/learn/data-access/tutorial-15-cs.aspx http://aspalliance.com/782 http://programming.top54u.com/post/ASPNet-20-GridView-Compute-Column-Sum-using-C-sharp.aspx Please, let me know if it helped you.. if not I'll make a code sample Best Regards,
    Posted to Data Presentation Controls (Forum) by XGmarX on 2/26/2009
Page 1 of 61 (603 items) 1 2 3 4 5 Next > ... Last »