473,395 Members | 1,762 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,395 software developers and data experts.

how to process items in response.form collection dynamically?

HI. in asp.net app, I have an xmlDocument that I transform to the client
html. Using xsl I create a few textboxes to capture user input. Each of
these are related to <data> elements in the xmlDoc.

I want to use the Forms collection to post the html form back to an
asp.net page, and process each request.form object (textbox) via an xml
node.value update.

For any given xmlDocument there is an unknown number of items resulting
in textboxes. Each one would, however, have a unique name via their
attributes and that's how I would identify the node.values to update.

Within the new asp.net form I post the html form to, how would I
retrieve each of the items? I'm thinking some kind of for each
statement? But how to assign the name/value pairs etc. dynamically.

Hope this is clear enough! Any examples appreciated.

Thanks.

Kathy

*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!
Nov 17 '05 #1
10 6873
I did this
dim i as short

For i = 0 To Request.Form.Count - 1
Response.Write(Request.Form.Keys(i) & "=" & Request.Form.Item(i) &
"</br>")
Next i

to see them. See what you think
You can get what you need out of this code I think.

HTH

Shane
"Kathy Burke" <ka**********@attbi.com> wrote in message
news:u9**************@TK2MSFTNGP09.phx.gbl...
HI. in asp.net app, I have an xmlDocument that I transform to the client
html. Using xsl I create a few textboxes to capture user input. Each of
these are related to <data> elements in the xmlDoc.

I want to use the Forms collection to post the html form back to an
asp.net page, and process each request.form object (textbox) via an xml
node.value update.

For any given xmlDocument there is an unknown number of items resulting
in textboxes. Each one would, however, have a unique name via their
attributes and that's how I would identify the node.values to update.

Within the new asp.net form I post the html form to, how would I
retrieve each of the items? I'm thinking some kind of for each
statement? But how to assign the name/value pairs etc. dynamically.

Hope this is clear enough! Any examples appreciated.

Thanks.

Kathy

*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!

Nov 17 '05 #2
Thanks Shane,

How would I use something similar to create a set of name/value pairs
that I can then use in subsequent code? (instead of response write?)

For example, if there are three name/value pairs, assign a var
name/value to each one, then use it to set an xpath, then update an xml
node with that info.

I can see where the for each will help, but could you possibly go a bit
further in your example?

Thanks.

Kathy

*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!
Nov 17 '05 #3
"Kathy Burke" <ka**********@attbi.com> wrote in message
news:e9*************@TK2MSFTNGP12.phx.gbl...
Thanks Shane,

How would I use something similar to create a set of name/value pairs
that I can then use in subsequent code? (instead of response write?)


Kathy,

System.Collections.Specialized.NameValueCollection is good for storing
Name/Value pairs.
--
John Saunders
Internet Engineer
jo***********@surfcontrol.com
Nov 17 '05 #4
Maybe I misunderstood your question, but are you wanting to get this
information from a form submission?

If so,

For i = 0 To Request.Form.Count - 1
'this code won't run because we aren't doing anything with these items
Request.Form.Keys(i) 'this is the name of element(i) that the user
posted in the form
Request.Form.Item(i) 'this is element i's value
Next i

If you wanted to get HTML form data by name I think just
use the Params collection.

For anything else..i.e you want to make up the name value pairs in code, you
should probably do what John says or look in the collections namespace for
options.

Sorry, I am new at .NET still ...Best I can tell you .

"Kathy Burke" <ka**********@attbi.com> wrote in message
news:e9*************@TK2MSFTNGP12.phx.gbl...
Thanks Shane,

How would I use something similar to create a set of name/value pairs
that I can then use in subsequent code? (instead of response write?)

For example, if there are three name/value pairs, assign a var
name/value to each one, then use it to set an xpath, then update an xml
node with that info.

I can see where the for each will help, but could you possibly go a bit
further in your example?

Thanks.

Kathy

*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!

Nov 17 '05 #5
"Kathy Burke" <ka**********@attbi.com> wrote in message
news:%2****************@TK2MSFTNGP10.phx.gbl...
John, could you possibly show me a little example?
Thanks.


Kathy, if I understand you correctly (and I think maybe I don't), you want
to create a set of name/value pairs at one point in your code (like,
Page_Load), and use it later in the same request (like, in a Click event
handler). You can do it like this:

' Let's assume we have a DataReader returning rows with two fields -
"TheName" and "TheValue".
' We can put them in a variable as follows:

Private NamesAndValues as New
System.Collections.Specialized.NameValueCollection ()

Private Sub Page_Load(sender as object, e as EventArgs)
If Not Page.IsPostBack Then
' Somehow get the DataReader, then:

While reader.Read()
NamesAndValues.Add(reader.GetString("TheName"),
reader.GetString("TheValue"))
End While
End If
End Sub

' Later:
Private Sub btnOk_Click(sender as Object, e as EventArgs)
' We can get the value for a particular name
Dim aValue as String = NamesAndValues("aName")

' Or we can loop through them all
Dim aName as String

For Each aName in NamesAndValues.AllKeys
aValue = NamesAndValues(aName)
Next

End Sub

I hope that helps.
--
John Saunders
Internet Engineer
jo***********@surfcontrol.com

Nov 17 '05 #6
Hi again. Sorry but I'm still confused at how to do this exactly. I
have an html form (resulting from a transformed xml document). Within
the form I will have an unknown set of name/value pairs dependent on
how many of a certain element I have in the source xml (e.g.,
<measurement> or <data_collection>.

When I post the html form, my script opens an asp.net page and I need
to save the xml elements back into the DOM. I figured the best/easiest
way to do that was the request.forms collection (per other posts I've
had).

But to be dynamic (unknown number of elements, but each with a unique
"name" attribute), in English I want to:

For each name/value pair in the request.form collection, I need to set
an xpath expression pointing to the "name" fo the name/value pair,
then update the name.value of the xpath to the value of the name/value
pair.

See what I mean?

Thanks for responding. Kathy

"John Saunders" <jo***********@surfcontrol.com> wrote in message news:<eg**************@TK2MSFTNGP12.phx.gbl>...
"Kathy Burke" <ka**********@attbi.com> wrote in message
news:%2****************@TK2MSFTNGP10.phx.gbl...
John, could you possibly show me a little example?
Thanks.


Kathy, if I understand you correctly (and I think maybe I don't), you want
to create a set of name/value pairs at one point in your code (like,
Page_Load), and use it later in the same request (like, in a Click event
handler). You can do it like this:

' Let's assume we have a DataReader returning rows with two fields -
"TheName" and "TheValue".
' We can put them in a variable as follows:

Private NamesAndValues as New
System.Collections.Specialized.NameValueCollection ()

Private Sub Page_Load(sender as object, e as EventArgs)
If Not Page.IsPostBack Then
' Somehow get the DataReader, then:

While reader.Read()
NamesAndValues.Add(reader.GetString("TheName"),
reader.GetString("TheValue"))
End While
End If
End Sub

' Later:
Private Sub btnOk_Click(sender as Object, e as EventArgs)
' We can get the value for a particular name
Dim aValue as String = NamesAndValues("aName")

' Or we can loop through them all
Dim aName as String

For Each aName in NamesAndValues.AllKeys
aValue = NamesAndValues(aName)
Next

End Sub

I hope that helps.

Nov 17 '05 #7
"KathyB" <Ka**********@attbi.com> wrote in message
news:75************************@posting.google.com ...
Hi again. Sorry but I'm still confused at how to do this exactly.
That makes two of us. :-)
I
have an html form (resulting from a transformed xml document). Within
the form I will have an unknown set of name/value pairs dependent on
how many of a certain element I have in the source xml (e.g.,
<measurement> or <data_collection>.
Ok. BTW, maybe you said this before, but what kind of HTML elements will
contain the name/value pairs from the XML file? Also, I want to make sure
we're both talking about an .aspx page?
When I post the html form, my script opens an asp.net page
Ok, now I'm confused.

When you say "post the html form", I presume you mean that you click a
button or something to submit the form? So, what script are you talking
about? Are you referring to a "<script runat=server />" block in the .aspx
page, or perhaps you're referring to the codebehind?

In those cases, the script _is_ the asp.net page. It doesn't open it.
and I need
to save the xml elements back into the DOM.
Ok, which DOM are you talking about? Do you mean that you need to update
the original XML file?
I figured the best/easiest
way to do that was the request.forms collection (per other posts I've
had).

But to be dynamic (unknown number of elements, but each with a unique
"name" attribute), in English I want to:

For each name/value pair in the request.form collection, I need to set
an xpath expression pointing to the "name" fo the name/value pair,
then update the name.value of the xpath to the value of the name/value
pair.

See what I mean?
Maybe. You can iterate through the Request.Form collection in the same way
you iterate through the NameValueCollection in the example I gave. This is
because Request.Form _is_ a NameValueCollection:

Dim aName as String
Dim aValue as String
For Each aName in Request.Form.AllKeys
aValue = Request.Form(aName)

' Set the xpath expression pointing to aName then
' update the name.value of the xpath to the value of aValue
Next
Thanks for responding. Kathy
I hope I'm getting warmer. BTW, if this gets further into XML, you'll have
to find someone else to help out - I haven't done much with XML yet.
--
John Saunders
Internet Engineer
jo***********@surfcontrol.com

"John Saunders" <jo***********@surfcontrol.com> wrote in message

news:<eg**************@TK2MSFTNGP12.phx.gbl>...
"Kathy Burke" <ka**********@attbi.com> wrote in message
news:%2****************@TK2MSFTNGP10.phx.gbl...
John, could you possibly show me a little example?
Thanks.


Kathy, if I understand you correctly (and I think maybe I don't), you want to create a set of name/value pairs at one point in your code (like,
Page_Load), and use it later in the same request (like, in a Click event
handler). You can do it like this:

' Let's assume we have a DataReader returning rows with two fields -
"TheName" and "TheValue".
' We can put them in a variable as follows:

Private NamesAndValues as New
System.Collections.Specialized.NameValueCollection ()

Private Sub Page_Load(sender as object, e as EventArgs)
If Not Page.IsPostBack Then
' Somehow get the DataReader, then:

While reader.Read()
NamesAndValues.Add(reader.GetString("TheName"),
reader.GetString("TheValue"))
End While
End If
End Sub

' Later:
Private Sub btnOk_Click(sender as Object, e as EventArgs)
' We can get the value for a particular name
Dim aValue as String = NamesAndValues("aName")

' Or we can loop through them all
Dim aName as String

For Each aName in NamesAndValues.AllKeys
aValue = NamesAndValues(aName)
Next

End Sub

I hope that helps.

Nov 17 '05 #8
I'm with John on this one... I'm not great in XML yet, but the question
seems to lie in this.

You said you transformed and XML doc into an HTML form??? is that correct?

So you have regular <INPUT TYPE="TEXT" .... type elements in your HTML form
that have NAME="WHATEVER" and VALUE="WHATEVER'S VALUE"

Is that right or wrong?

If that is right then iterating as mentioned through the form as mentioned
before gets the name and getting the value from the

Request.Form.Keys(i) is the name of the HTML Element that was submitted
Request.Form.Item(i) is the value of that HTML Element

If you are doing something else with XML, how is the person submitting
it--getting it to the server from the client?
They give you an xml file name and you get get it, or is the above being
used?

I am afraid I am confused as to what you want...

Maybe some example code---simple example of your HTML form--what you want to
submit and what you hope to do with it and return would help us all out.

Sorry...

Shane
"KathyB" <Ka**********@attbi.com> wrote in message
news:75************************@posting.google.com ...
Hi again. Sorry but I'm still confused at how to do this exactly. I
have an html form (resulting from a transformed xml document). Within
the form I will have an unknown set of name/value pairs dependent on
how many of a certain element I have in the source xml (e.g.,
<measurement> or <data_collection>.

When I post the html form, my script opens an asp.net page and I need
to save the xml elements back into the DOM. I figured the best/easiest
way to do that was the request.forms collection (per other posts I've
had).

But to be dynamic (unknown number of elements, but each with a unique
"name" attribute), in English I want to:

For each name/value pair in the request.form collection, I need to set
an xpath expression pointing to the "name" fo the name/value pair,
then update the name.value of the xpath to the value of the name/value
pair.

See what I mean?

Thanks for responding. Kathy

"John Saunders" <jo***********@surfcontrol.com> wrote in message

news:<eg**************@TK2MSFTNGP12.phx.gbl>...
"Kathy Burke" <ka**********@attbi.com> wrote in message
news:%2****************@TK2MSFTNGP10.phx.gbl...
John, could you possibly show me a little example?
Thanks.


Kathy, if I understand you correctly (and I think maybe I don't), you want to create a set of name/value pairs at one point in your code (like,
Page_Load), and use it later in the same request (like, in a Click event
handler). You can do it like this:

' Let's assume we have a DataReader returning rows with two fields -
"TheName" and "TheValue".
' We can put them in a variable as follows:

Private NamesAndValues as New
System.Collections.Specialized.NameValueCollection ()

Private Sub Page_Load(sender as object, e as EventArgs)
If Not Page.IsPostBack Then
' Somehow get the DataReader, then:

While reader.Read()
NamesAndValues.Add(reader.GetString("TheName"),
reader.GetString("TheValue"))
End While
End If
End Sub

' Later:
Private Sub btnOk_Click(sender as Object, e as EventArgs)
' We can get the value for a particular name
Dim aValue as String = NamesAndValues("aName")

' Or we can loop through them all
Dim aName as String

For Each aName in NamesAndValues.AllKeys
aValue = NamesAndValues(aName)
Next

End Sub

I hope that helps.

Nov 17 '05 #9
My html form is a set of user instructions steps. For each
<data_collection> element, for example, my xsl turns that into an
<input type=text name="the unique name attribute defined in the base
xml doc"> box in the html form (I would post it, but it's really quite
large). AND, I don't have the html script yet!!! but it's just a
simple post to an aspx page (e.g., process_dom.aspx).

The only "changes" the user is allowed to make are via these text
boxes. When the user is done, they click a Submit button. The submit
javascript then opens an aspX page (hidden from the user), where I
would use code to load the original xml doc and that's where I need to
do node.value changes FOR EACH TEXTBOX INPUT before saving the entire
DOM.

Again, because these instruction docs have an unknown number/type
(different elements such as <measurement> and <data_collection> of
name/value pairs, that's where I'm needing the help! I think what
you're giving me is certainly the right track, I'm just not able yet
to translate it into the code I need.

For example, a request.form collection ends up having 2 pairs from two
html textboxes name="one", name="two".

For each, I need to set a variable name so I can use that in an xpath
to get to the right DOM node (yes?).

Dim xElem As XmlElement =
xDoc.SelectSingleNode("//measurement[@name='" & varName & "'")

Then I could do a node.value = "value of the name/value pair here".

Move onto the next name/value pair, set the varName variable, etc.

Hope this helps clarify...I truly, truly appreciate your sticking with
me on this!!!

Thanks.
Kathy
"John Saunders" <jo***********@surfcontrol.com> wrote in message news:<e9**************@tk2msftngp13.phx.gbl>...
"KathyB" <Ka**********@attbi.com> wrote in message
news:75************************@posting.google.com ...
Hi again. Sorry but I'm still confused at how to do this exactly.


That makes two of us. :-)
I
have an html form (resulting from a transformed xml document). Within
the form I will have an unknown set of name/value pairs dependent on
how many of a certain element I have in the source xml (e.g.,
<measurement> or <data_collection>.


Ok. BTW, maybe you said this before, but what kind of HTML elements will
contain the name/value pairs from the XML file? Also, I want to make sure
we're both talking about an .aspx page?
When I post the html form, my script opens an asp.net page


Ok, now I'm confused.

When you say "post the html form", I presume you mean that you click a
button or something to submit the form? So, what script are you talking
about? Are you referring to a "<script runat=server />" block in the .aspx
page, or perhaps you're referring to the codebehind?

In those cases, the script _is_ the asp.net page. It doesn't open it.
and I need
to save the xml elements back into the DOM.


Ok, which DOM are you talking about? Do you mean that you need to update
the original XML file?
I figured the best/easiest
way to do that was the request.forms collection (per other posts I've
had).

But to be dynamic (unknown number of elements, but each with a unique
"name" attribute), in English I want to:

For each name/value pair in the request.form collection, I need to set
an xpath expression pointing to the "name" fo the name/value pair,
then update the name.value of the xpath to the value of the name/value
pair.

See what I mean?


Maybe. You can iterate through the Request.Form collection in the same way
you iterate through the NameValueCollection in the example I gave. This is
because Request.Form _is_ a NameValueCollection:

Dim aName as String
Dim aValue as String
For Each aName in Request.Form.AllKeys
aValue = Request.Form(aName)

' Set the xpath expression pointing to aName then
' update the name.value of the xpath to the value of aValue
Next
Thanks for responding. Kathy


I hope I'm getting warmer. BTW, if this gets further into XML, you'll have
to find someone else to help out - I haven't done much with XML yet.
--
John Saunders
Internet Engineer
jo***********@surfcontrol.com

"John Saunders" <jo***********@surfcontrol.com> wrote in message

news:<eg**************@TK2MSFTNGP12.phx.gbl>...
"Kathy Burke" <ka**********@attbi.com> wrote in message
news:%2****************@TK2MSFTNGP10.phx.gbl...
> John, could you possibly show me a little example?
> Thanks.
>

Kathy, if I understand you correctly (and I think maybe I don't), you want to create a set of name/value pairs at one point in your code (like,
Page_Load), and use it later in the same request (like, in a Click event
handler). You can do it like this:

' Let's assume we have a DataReader returning rows with two fields -
"TheName" and "TheValue".
' We can put them in a variable as follows:

Private NamesAndValues as New
System.Collections.Specialized.NameValueCollection ()

Private Sub Page_Load(sender as object, e as EventArgs)
If Not Page.IsPostBack Then
' Somehow get the DataReader, then:

While reader.Read()
NamesAndValues.Add(reader.GetString("TheName"),
reader.GetString("TheValue"))
End While
End If
End Sub

' Later:
Private Sub btnOk_Click(sender as Object, e as EventArgs)
' We can get the value for a particular name
Dim aValue as String = NamesAndValues("aName")

' Or we can loop through them all
Dim aName as String

For Each aName in NamesAndValues.AllKeys
aValue = NamesAndValues(aName)
Next

End Sub

I hope that helps.

Nov 17 '05 #10
p2p.wrox.com, look up code for Professional VB.NET Chapter 10--on XML--maybe
something there can help you. If not try www.superexpert.com, "ASP
Unleashed" Look at code for Chapter 13.

Both of these deal with XML and are really the extent of what I know but
just haven't used it much.

You can easily iterate through your form posted elements as I have said
before. If all have a unique name, then you can get "NameofElement" and
then go get it's value as mentioned before... Do that in a loop using the
count-1 property of the collection.

Inside of that as to what to do with it in XML, John is write--that is an
XML question better directed at an XML group. But maybe the sample code
from one of the books I mentioned might have something you need.

Sorry I can't be of further help.
Shane

"KathyB" <Ka**********@attbi.com> wrote in message
news:75**************************@posting.google.c om...
My html form is a set of user instructions steps. For each
<data_collection> element, for example, my xsl turns that into an
<input type=text name="the unique name attribute defined in the base
xml doc"> box in the html form (I would post it, but it's really quite
large). AND, I don't have the html script yet!!! but it's just a
simple post to an aspx page (e.g., process_dom.aspx).

The only "changes" the user is allowed to make are via these text
boxes. When the user is done, they click a Submit button. The submit
javascript then opens an aspX page (hidden from the user), where I
would use code to load the original xml doc and that's where I need to
do node.value changes FOR EACH TEXTBOX INPUT before saving the entire
DOM.

Again, because these instruction docs have an unknown number/type
(different elements such as <measurement> and <data_collection> of
name/value pairs, that's where I'm needing the help! I think what
you're giving me is certainly the right track, I'm just not able yet
to translate it into the code I need.

For example, a request.form collection ends up having 2 pairs from two
html textboxes name="one", name="two".

For each, I need to set a variable name so I can use that in an xpath
to get to the right DOM node (yes?).

Dim xElem As XmlElement =
xDoc.SelectSingleNode("//measurement[@name='" & varName & "'")

Then I could do a node.value = "value of the name/value pair here".

Move onto the next name/value pair, set the varName variable, etc.

Hope this helps clarify...I truly, truly appreciate your sticking with
me on this!!!

Thanks.
Kathy
"John Saunders" <jo***********@surfcontrol.com> wrote in message

news:<e9**************@tk2msftngp13.phx.gbl>...
"KathyB" <Ka**********@attbi.com> wrote in message
news:75************************@posting.google.com ...
Hi again. Sorry but I'm still confused at how to do this exactly.


That makes two of us. :-)
I
have an html form (resulting from a transformed xml document). Within
the form I will have an unknown set of name/value pairs dependent on
how many of a certain element I have in the source xml (e.g.,
<measurement> or <data_collection>.


Ok. BTW, maybe you said this before, but what kind of HTML elements will
contain the name/value pairs from the XML file? Also, I want to make sure we're both talking about an .aspx page?
When I post the html form, my script opens an asp.net page


Ok, now I'm confused.

When you say "post the html form", I presume you mean that you click a
button or something to submit the form? So, what script are you talking
about? Are you referring to a "<script runat=server />" block in the ..aspx page, or perhaps you're referring to the codebehind?

In those cases, the script _is_ the asp.net page. It doesn't open it.
and I need
to save the xml elements back into the DOM.


Ok, which DOM are you talking about? Do you mean that you need to update the original XML file?
I figured the best/easiest
way to do that was the request.forms collection (per other posts I've
had).

But to be dynamic (unknown number of elements, but each with a unique
"name" attribute), in English I want to:

For each name/value pair in the request.form collection, I need to set
an xpath expression pointing to the "name" fo the name/value pair,
then update the name.value of the xpath to the value of the name/value
pair.

See what I mean?


Maybe. You can iterate through the Request.Form collection in the same way you iterate through the NameValueCollection in the example I gave. This is because Request.Form _is_ a NameValueCollection:

Dim aName as String
Dim aValue as String
For Each aName in Request.Form.AllKeys
aValue = Request.Form(aName)

' Set the xpath expression pointing to aName then
' update the name.value of the xpath to the value of aValue
Next
Thanks for responding. Kathy


I hope I'm getting warmer. BTW, if this gets further into XML, you'll have to find someone else to help out - I haven't done much with XML yet.
--
John Saunders
Internet Engineer
jo***********@surfcontrol.com

"John Saunders" <jo***********@surfcontrol.com> wrote in message

news:<eg**************@TK2MSFTNGP12.phx.gbl>...
> "Kathy Burke" <ka**********@attbi.com> wrote in message
> news:%2****************@TK2MSFTNGP10.phx.gbl...
> > John, could you possibly show me a little example?
> > Thanks.
> >
>
> Kathy, if I understand you correctly (and I think maybe I don't), you
want
> to create a set of name/value pairs at one point in your code (like,
> Page_Load), and use it later in the same request (like, in a Click

event > handler). You can do it like this:
>
> ' Let's assume we have a DataReader returning rows with two fields -
> "TheName" and "TheValue".
> ' We can put them in a variable as follows:
>
> Private NamesAndValues as New
> System.Collections.Specialized.NameValueCollection ()
>
> Private Sub Page_Load(sender as object, e as EventArgs)
> If Not Page.IsPostBack Then
> ' Somehow get the DataReader, then:
>
> While reader.Read()
> NamesAndValues.Add(reader.GetString("TheName"),
> reader.GetString("TheValue"))
> End While
> End If
> End Sub
>
> ' Later:
> Private Sub btnOk_Click(sender as Object, e as EventArgs)
> ' We can get the value for a particular name
> Dim aValue as String = NamesAndValues("aName")
>
> ' Or we can loop through them all
> Dim aName as String
>
> For Each aName in NamesAndValues.AllKeys
> aValue = NamesAndValues(aName)
> Next
>
> End Sub
>
> I hope that helps.

Nov 17 '05 #11

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

77
by: Charles Law | last post by:
Hi guys I have a time critical process, running on a worker thread. By "time critical", I mean that certain parts of the process must be completed in a specific time frame. The time when the...
0
by: Jason Ferree | last post by:
I posetd this in one group, but got no response, so I'll try it in this one. I am trying to loop through all messages in the inbox. To do something, in my case, look for and save attachments....
1
by: Kathy Burke | last post by:
HI. in asp.net app, I have an xmlDocument that I transform to the client html. Using xsl I create a few textboxes to capture user input. Each of these are related to <data> elements in the xmlDoc....
7
by: Keith Patrick | last post by:
After completely giving up on finding some way in my ASP.Net app to take a query string URL and redirect to it as a POST instead, I went with a system like so: Upon "redirection," all the...
3
by: Linda | last post by:
Greetings! In order to keep better track a form with several combo-boxes, I've subclassed the ones that need to change in response to events on other controls on the form. An example of a...
3
by: Will Chamberlain | last post by:
I am running into a strange error when I try debugging my current application. A form loads up with a dynamically-populated textbox full of software titles. Upon selection of a software title and...
1
by: Daniel Gormley | last post by:
What I have is a form that is dynamically generated based on which database table its calling. Therefore, the number of category.name.count can be different. So I have this form generated and...
2
by: Milsnips | last post by:
hi there, i have the following HTML code: -------------------------- <asp:DropDownList id="hddList" runat="server"> <asp:ListItem Value="1">Item 1</asp:ListItem> <asp:ListItem Value="2">Item...
14
by: Paul_Madden via DotNetMonster.com | last post by:
Basically I have a listbox to which I add simple STRING items- I have a progress bar which I increment whenever I populate another portion of the complete set of items I wish to add. What I observe...
4
by: TS | last post by:
In my production exceptions i get an email with all the form elements and their values to debug. the controls that have a blank value are not seen and it makes my debug job harder (was the...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.