popup window is not working fine in chrome and mozilla, but its working fine in IE. Could any one help me in that? Thanks & Regards, Member 3879881, please don't forget to vote on the post
Member 3879881
Posts
-
Popup Window -
Machine.configHi I have a application, i deployed the application in two servers. One of my server application is working fine, The another one is not responding well. I checked the files all are same, i found the difference in machine.config file. Working well server machine config having the extra contents, which i posted in pre post. Those lines are not avail in another server, which is not working fine, so if i add the contents in the second server, the application will work or not? Here my doubt is whether the **WebMDCert value is different or the same for each environment.**Thanks & Regards, Member 3879881, please don't forget to vote on the post
-
Machine.configHi,
-
ReportingHi i am using Clearcase and created a view for my project. the project is developed in framework 4.0, crystal report 2010 & vs 2010. When i execute the report which i have created a view, its working fine. In the same system i have taken the project one more copy and when i excute the report its shows this error "The base class includes the field 'CrystalReportViewer1', but its type (CrystalDecisions.Web.CrystalReportViewer) is not compatible with the type of control (CrystalDecisions.Web.CrystalReportViewer)." What should i do, please guide me Thanks & Regards, Member 3879881, please don't forget to vote on the post
-
More than 1900 pages export top excel from reportHi Simon, Yes its having more than 80000 rows, is there anyway to export all the datas into excel sheet? Ya we know only excel sheet have 65000 rows, but is there any possible way to split the records and export to excel worksheet1 and worksheet2? or anyother way is there to export all the datas into excel? Thanks & Regards, Member 3879881, please don't forget to vote on the post
-
More than 1900 pages export top excel from reportHi Guys, In my Crystal report i have more than 1900 pages are there, i am trying to export all the datas into excel, but i am getting failure, is there any possible ways there to export all the datas to excel?, mean we need to change any thing in web.config file? for to resolve this probs? Thanks & Regards, Member 3879881, please don't forget to vote on the post
-
Changes in already excisted excel fileHi i have a Already existed excel file in my root path of the application, In tht i have to clear particular cells range like A2 to F75. And i have insert my new datas into those cells,after tht its has to getting save on enduser side, Please guide me,any one having idea baout this Thanks & Regards, Member 3879881, please don't forget to vote on the post
-
With out SQL identity column inserting the datas, via asp.netHi in sql, "identity column" will automatically increase the value of its own, wenever other columns getting the value. But in my case i have mentioned my column datatype as varchar, so "identity" wont work out here. i want to insert my datas like this format for my ID Column, ID V00000001 V00000002 V00000003 . . . V00000023 how to achieve using asp.net Thanks & Regards, Member 3879881, please don't forget to vote on the post
-
404 error redirect to particular page?Hi guys, IF enduser will get 404 error in my application.., it will give him to the page cannot be found..., Instead i want to redirect him to some specific page..., How can i do that? Thanks & Regards, Member 3879881, please don't forget to vote on the post
-
Iframe page login not working fine in IE...,But working fine in Mozila browser...,Hi guys, I have explained my probs here.., this problem is occuring in IE browser only...,Mozila its working fine..., Plz click on the following url in IE browser http://www.justtrade.in/Portfoliotracker/Default.aspx U will see "Registered User" link plz click tht one..., u will get a login page, with out changing the browser url...,becoz its opening in an iframe..., so, the login page also in an iframe..., here if i am trying to login a user...,if the user is authenticated..., i am using his user name as session...,and redirecting him to home page..., but, if the valid user login also, its redirecting him to login page only..., this problem in IE browser only...,Mozila its working fine..., can u plz tell me y its not working in IE? and how to solve this one? Thanks & Regards, Member 3879881, please don't forget to vote on the post
-
Iframe page login not working fine in IE...,But working fine in Mozila browser...,Hi guys, I have explained my probs here.., this problem is occuring in IE browser only...,Mozila its working fine..., Plz click on the following url in IE browser http://www.justtrade.in/Portfoliotracker/Default.aspx[^] U will see "Registered User" link plz click tht one..., u will get a login page, with out changing the browser url...,becoz its opening in an iframe..., so, the login page also in an iframe..., here if i am trying to login a user...,if the user is authenticated..., i am using his user name as session...,and redirecting him to home page..., but, if the valid user login also, its redirecting him to login page only..., this problem in IE browser only...,Mozila its working fine..., can u plz tell me y its not working in IE? and how to solve this one? Thanks & Regards, Member 3879881, please don't forget to vote on the post
-
modal popup extender in page loadHi guys..., I want to show a modal popup using modalpopup extender in page load..., plz help me regards this..., Modal popup extender asking the target controlid...,but in my case with out target id..., while page load modal popup window has to fire..., Thanks & Regards, Member 3879881, please don't forget to vote on the post
-
Page.RegisterStartupScriptHi guys, Very good morning to all..., i have a page in tht one image click i opened a pop up window..., while openeing the popup window i have checked the session of "userid"..., if session is expired i have to close the popup window and the parent page has to redirect to login page..., so the popup window page i have declared in page load like this..., _UserID = Session["UserID"] == null ? string.Empty : Session["UserID"].ToString().Trim(); if (_UserID == string.Empty) { System.Text.StringBuilder sb = new System.Text.StringBuilder(); sb.Append(""); sb.Append("window.opener.location.href='/LoginPT.aspx?msg=se"); sb.Append("';"); sb.Append("self.close();"); sb.Append(""); Page.RegisterStartupScript("FocusScript", sb.ToString()); } but this is not working for me..., plz guide me to solve this..., Thanks & Regards, Member 3879881, please don't forget to vote on the post
-
Auto complete extender with out pagemethod...,Hi guys i want to use auto complete extender for my textbox..., I know how to use tht with pagemethod..., Now my probs is my webmethod in some other project..., i am accessing the webmethod through webreference for my pages..., i have declared the name space like this..., using ABPort.portWebServices; now how can i acces the web method which is in ABPort.portWebServices for my textbox which is in another project page..., plz guide me this is my code sample: portWebServices.asmx.cs ----------------------- [WebMethod] public static string[] Get_Alert_CompanyInfo(string prefixText) { string sql = "Select * from tbl"; SqlDataAdapter da = new SqlDataAdapter(sql, SqlCl); da.SelectCommand.Parameters.Add("@prefixText", SqlDbType.VarChar, 50).Value = prefixText + "%"; DataTable dt = new DataTable(); da.Fill(dt); string[] items = new string[dt.Rows.Count]; int i = 0; foreach (DataRow dr in dt.Rows) { items.SetValue(dr["LNAME"].ToString(), i); i++; } return items; } my page name which is in another project ----------------------------------------- SetAlerts.aspx in tht my textbox is there, for tht i want to acces this webmethod "Get_Alert_CompanyInfo" Thanks & Regards, Member 3879881, please don't forget to vote on the post
-
convert html to csvexport to CSVHi Guys i have a data format like this format...,
Head1
Head2
Head3
some value
value1
value2
value3
value1
value2
value3
value1
value2
value3
some value dasfs
value1
value2
value3
value1
value2
value3
Now i want to export the values to .CSV format..., In lower version of .CSV(2000) its showing datas properly..., the same thing if i open in 2007 CSV format..., i am getting the records how i mentioned in above(table) the sme way i am getting (i.e) with table..., this is my code: string strData = ".......
//the above table format i given here Response.Write(strData); byte[] data = ASCIIEncoding.ASCII.GetBytes(strData); Response.Clear(); Response.ContentType = "text/csv"; Response.AddHeader("content-disposition", "attachment;filename=" + _UserID + "Stock" + DateTime.Now.Second.ToString() + DateTime.Now.Millisecond.ToString() + ".csv"); Response.BinaryWrite(data); Response.End(); plz help me regards this..., Thanks & Regards, Member 3879881, please don't forget to vote on the post
-
RelationShip Betweem datasetHi Guys Good Morning, I have 3 Dataset like this, First Dataset Records, Code Value 1010 68.876 7887 189.89 456 1880.76 1010 223.978 Second Dataset Record IV 7.88 Third Dataset Records, Code Name IndCode 1010 Name1 1 7887 Name5 2 456 Name8 3 Now thses 3 dataset merge and i need the final dataset like this..., Name finalValue Percent(finalvalue/IV) Name1 292.854 37.16 (Code-1010,Value-68.876+223.978) Name5 189.89 24.10 (code-7887,value-189.89) Name8 1880.76 238.68 (code-456,Value-1880.76) How to get the final dataset like this Thanks & Regards, Member 3879881, please don't forget to vote on the post
-
DateTime.Now.ToLongDateString()i have checked the same project with other pc i got my result exactly..., my i/p & o/p goiing fine in other pc..., But in this pc wht i need i didnt get Thanks & Regards, Member 3879881, please don't forget to vote on the post
-
DateTime.Now.ToLongDateString()Hi Griff, Thanks for ur reply, I already created lot of project in the same way..., So i cant go and modify all the project place the date format like (MM/dd/YYY)..., If i change on single place(PC), it will work for all projects..., Thats y asking, where to change the date format in PC, to get asusal format like others machine..., i have changed in my date format and restarted, thn also getting same dd MMM yyyy Plz any one guide me Thanks & Regards, Member 3879881, please don't forget to vote on the post
-
DateTime.Now.ToLongDateString()Hi all other system giving DateTime.Now.ToLongDateString() as Wednesday, July 28, 2010 But my system giving 28 July 2010 wht is the probs, y its giving like tht?, To get asusal like others system dateformat where i should change in my PC? Thanks & Regards, Member 3879881, please don't forget to vote on the post
-
get back vs2005 project?hi guys very good morning to u all, i have created vs2005 project and upgraded it into vs2008, while convert its asked to take backup and i too did the same,and the project has been upgraded..., now i like to get my vs2005 project back..., its possible to get it same ? Thanks & Regards, Member 3879881, please don't forget to vote on the post