Need to Format a zipcode into xxxxx-xxxx.

Ask a Question related to ASP.NET Data Grid Control, Design and Development.

  1. #1

    Default Need to Format a zipcode into xxxxx-xxxx.

    I guess that you can't do this with the property window
    of datagrid control. Probably need an itemdatabound event.

    How can I program an itemdatabound control to get a column
    (Zipcode) to look as such xxxxx-xxxx. It currently is in
    this format, xxxxxxxxx.
    Thanks for any help.
    ..


    Jeff Thur Guest

  2. Similar Questions and Discussions

    1. Web.config: <allow users="xxxx" /> Where does xxxx come from?
      I'm using Forms Authentication. When I authenticate a user from a database, I use the following line:...
    2. looking for online zipcode program and database
      I am looking for an online zip code program / database, that will aloo me at a minimum to be able to type in a zip code, a distance (5mile, 10miles,...
    3. Canada ZipCode Finder
      Hi Everyone, I am writing an asp application using US Zipcodes.....I was wondering...apart from the zipcode format being different between Canada...
    4. City/State auto fill-in with entry of ZipCode
      On Mon, 7 Jul 2003 15:18:21 -0700, "Krisse Arthur" <karthur@ci.bellevue.wa.us> wrote: You can use a combo box based on tblZip, with all three...
    5. Problems with SCSI aic79xx driver in 2.4.21 kernel...., 'attempting to abort cmd xxxxx'
      problem occurs....Note I am trying to install on a SuperMicro system server, model 6013P8.. I basically compiled a version of the 2.4.21 kernel and...
  3. #2

    Default Re: Need to Format a zipcode into xxxxx-xxxx.

    Jeff,
    It happens that the string formatting is the only part that does work for
    me. My problem is changing the cell background color, as in my previous
    post. This FormatCells method works for me if it is called by the
    DataGrid1_ItemDataBound event handler. The format specifier may be a little
    off, but the code certainly executes before the grid displays.

    ' The ItemDataBound event is handled for each row in datasource......
    Private Sub DataGrid1_ItemDataBound(ByVal sender As Object, ByVal e As
    System.Web.UI.WebControls.DataGridItemEventArgs) Handles
    DataGrid1.ItemDataBound

    ' FormatCells does get called for each row.....
    FormatCells(sender, e)
    End Sub


    Protected Sub FormatCells(ByVal sender As System.Object, ByVal e As
    System.Web.UI.WebControls.DataGridItemEventArgs)

    If e.Item.ItemType = ListItemType.Item Or e.Item.ItemType =
    ListItemType.AlternatingItem Then

    e.Item.Cells(5).Text = String.Format("ddddd-dddd", zip)




    "Jeff Thur" <jeff@emscirc.com> wrote in message
    news:021701c51553$6b75d380$a501280a@phx.gbl...
    > I guess that you can't do this with the property window
    > of datagrid control. Probably need an itemdatabound event.
    >
    > How can I program an itemdatabound control to get a column
    > (Zipcode) to look as such xxxxx-xxxx. It currently is in
    > this format, xxxxxxxxx.
    > Thanks for any help.
    > .
    >
    >

    RJ Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139