Best Way To Do This --- Simple Problem

Ask a Question related to ASP.NET General, Design and Development.

  1. #1

    Default Best Way To Do This --- Simple Problem

    I need to list a few rows of data in text format, for example:

    ID: 5442224
    ID: 5311255
    ID: 3536463

    The values will be bound to either datagrid, datalist, or repeater (it
    doesn't matter, whatever is easiest). How can I execute a public method
    located on the codebehind page whenever a link is selected?

    I guess each ID could be listed in a hyperlink, but the behavior I need is
    more like that of a button of some sort.

    Anyone have any ideas/suggests?

    Thanks,

    Ron

    --
    _____________________________
    Ron Rodenberg
    Lead Software Engineer
    Razorvision Technology, Inc.
    (214) 207-1688


    Ron Guest

  2. Similar Questions and Discussions

    1. XML::Simple problem
      A simple test script: #! /usr/bin/perl -w use DBI; use XML::Simple; use Data::Dumper; use strict; my $xmlconfig = XMLin(); print...
    2. Simple problem I think!!!!!
      I have the following code: if(mail($to,$subject,$body,$from)) { //go to Spoono Header ("Location: http://www.spoono.com/"); - Line 21 is...
    3. LWP::Simple get() problem
      Hi, I am having problems with the following code, in which the get() function from the LWP::Simple is not retrieving any of the contents of the...
    4. a very simple problem!
      hi ... When i click to the submit button, i want to insert value from the a text box to the mysql db. But when i enter text in the text box...
    5. A simple problem with a really simple form
      Hi there, I'm having a problem with designing a very small form in Dreamweaver. Its just a login form with username and password textfields - the...
  3. #2

    Default Re: Best Way To Do This --- Simple Problem

    What about a link button?

    "Ron" <spam@razorvision.net> wrote in message
    news:bh8kp9$8j1@library1.airnews.net...
    > I need to list a few rows of data in text format, for example:
    >
    > ID: 5442224
    > ID: 5311255
    > ID: 3536463
    >
    > The values will be bound to either datagrid, datalist, or repeater (it
    > doesn't matter, whatever is easiest). How can I execute a public method
    > located on the codebehind page whenever a link is selected?
    >
    > I guess each ID could be listed in a hyperlink, but the behavior I need is
    > more like that of a button of some sort.
    >
    > Anyone have any ideas/suggests?
    >
    > Thanks,
    >
    > Ron
    >
    > --
    > _____________________________
    > Ron Rodenberg
    > Lead Software Engineer
    > Razorvision Technology, Inc.
    > (214) 207-1688
    >
    >

    abacnet 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