Javascript calendar control for first time not openning in Mozilla
-
Dear all, In my application i have first Datecontrol(using javascript) next followed by 2 dropdowns and finally uploader control from CuteWebUI.AjaxUploader.dll(its works like user control) I am CuteWebUI.AjaxUploader.dll for uploader control which will show progress bar + time elapse while uploading a file it is showing postback In IE it is working .(First i need to select date from Datecontrol followed by 2 dropdowns then need to select uploader button (like browse) and save finally) But if the same page if i executed in Mozilla i am unable to open Datecontrol.But here i am facing one problem after selecting a file through uploader button showing postback then if i click datecontrol again now it is opening datecontrol.I am having doubt y datecontrol is not opening for first time. Can any one help on these?Here is code for your reference. uploadDocumentPopUp.aspx ------------------------ <%@ Register Assembly="CuteWebUI.AjaxUploader" Namespace="CuteWebUI" TagPrefix="cc2" %> uploadDocumentPopUp.aspx.cs --------------------------- protected void Uploader_FileUploaded(object sender, UploaderEventArgs args) { Uploader uploader = (Uploader)sender; fileName = args.FileName; string fileNameWithOutExt = Path.GetFileNameWithoutExtension(fileName); string fileExtension = Path.GetExtension(fileName); fileNameWithOutExt += DateTime.Now + fileExtension; fileNameWithOutExt = fileNameWithOutExt.Replace("/", ""); fileNameWithOutExt = fileNameWithOutExt.Replace(":", ""); fileNameWithOutExt = fileNameWithOutExt.Replace(" ", ""); ViewState["fileName"]=fileNameWithOutExt; args.CopyTo(Server.MapPath(@"..\Documents\" + fileNameWithOutExt)); //alertMessage.Alert.Show("Document got uploaded please click upload button"); Response.Write("alert('Document got uploaded successfully please click upload button!');"); } thanks in advance, Subbu.