Hi, i would like to know the best option to INSERT in one input in same table multiple rows. Example: we have Route table with colums like StationID, RouteNameID, Weekday, StarTime. Normal INSERT is 1,1,MON,1630, what I want is in same screen be able to select MON, TUE, WED, THU,FRI and INSERT into table: 1,1,MON,1630 1,1,TUE,1630 1,1,WED,1630 1,1,THU,1630 1,1,FRI,1630 I think selection could be w
Can you give me an example or guidance how i can create and call an onsubmit related event so that upon submit I can execute a string of sql statements to inject content from that form submission to a sql table, or call a stored procedure using the form variables as parameters. I have an XModPro table that's being populated on submit , but a I have another table that needs that data too... also th