Person Management App - Need major help

A

Arthur.Net

Wow. I am killing myself trying to get this to work. Can someone
send me out in the right direction? I have wasted 2 full days so
far. Here is what I need to do.

My application has a grid. One of the fields in a textbox. Onblur of
that text box I need to open a modal popup (I don't care about ajax).
This popup will search against about 100,000 names to see if the name
exists or anything like it. The results should be a list of links
that when clicked sends the result back to the parent along with its
ID to be stored in a hidden field.

If it does not exist, I need to be able to add it, then grab the new
@@identity and pass that back.

Anything out there that can help out with this?

Thanks!
 
I

Ignacio Machin ( .NET/ C# MVP )

Wow.  I am killing myself trying to get this to work.  Can someone
send me out in the right direction?  I have wasted 2 full days so
far.  Here is what I need to do.

My application has a grid.  One of the fields in a textbox.  Onblur of
that text box I need to open a modal popup (I don't care about ajax).
This popup will search against about 100,000 names to see if the name
exists or anything like it.  The results should be a list of links
that when clicked sends the result back to the parent along with its
ID to be stored in a hidden field.

If it does not exist, I need to be able to add it, then grab the new
@@identity and pass that back.

Anything out there that can help out with this?

Thanks!

hi

you better post tis question in the aspnet NG.
basically you have to handle the onblur event of the Textbox, IIRC
this event is not exposed in the server control, so you have to inject
javascript to do it (using TextBox.Attributes.Add )
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top