Posted on: 12/27/2014 9:45:21 AM | Views : 457

Hi,
I have in the markup defined
I am currently displaying html input control and a date time picker at runtime by first declaring the following in the markup <asp:Literal ID="litParameters" Runat="server"> </asp:Literal> and in the codebehind (.cs file) I have the following : html.AppendLine("<DIV ALIGN=left><IMG SRC='" + FilePath + "magnify_glass.gif' onMouseOver='this.src=\"" + FilePath + "magnify_glass_roll.gif\"' onMouseOut='this.src=\"" + FilePath + "magnify_glass.gif\"' BORDER=0 onClick=\"openDatePickerDialogWeb(window, document.forms[0].P_" + reportParam.FieldName.Trim() + "_1, document.forms[0].DateFormat.value)\">"); html.AppendLine(" <INPUT class=fieldvalueborder NAME='P_" + reportParam.FieldName.Trim() + "_1' VALUE='' readonl ...

Go to the complete details ...