JasonSpr
unread,Nov 3, 2009, 3:53:43 PM11/3/09Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to XMPie Interest Group
Hello,
I have a Rurl that I am running which gathers customer information,
and stores it in a MSsql database. Everything was working fine, but I
recently added some additional fields to the project, and whenever I
change those fields, they all updated my "Industry_S" column in the
database. "Industry_S" was one of the fields that was working fine
before I made these changes.
I added columns for the fields to the database and added the adors to
the plan as adors and as schema, and rechecked in the plan.
I updated the .aspx file to show the new Checkbox and the two new
Select forms. I have also added the new adors to these lines:
Under "<XMPCtrls:uCreateXMUserControl"
ADORNames='<%# "\"MyCheckBox\",\"MySelectBox\", etc...
ADORNames='<%# "\"MyCheckBox\",\"MySelectBox\", etc...
ADORValues='<%# "\"" + (Request.Form["MyCheckBox"] != null ?
Convert.ToString(Request.Form["MyCheckBox"]).Replace("\"", "\"\"") :
"") + "\"" + "," + etc...
In other words, wherever there were instances of code pointing to
previous fields, I also added my new fields.
Why would all the new fields submit to "Industry_S"?