Hi all, I have some Interview Questions on asp.net. To view , please visit at :) http://apnasaathi.blogspot.com/2006/09/interview-questions-on-aspnet.html
rajkumar Sharma
Hi all, I have some Interview Questions on asp.net. To view , please visit at :) http://apnasaathi.blogspot.com/2006/09/interview-questions-on-aspnet.html
rajkumar Sharma
then Use Session Object as Session["conection"]="Connectionstring"; and in user coontrol u can retrieve it by string x=Session["conection"].ToString(); rajkumar Sharma
You can write code in web.config as then in user control write namespace using System.Configuration and then u can write code witten below where you want to access connection as ConfigurationSetting(appSettings[con]); rajkumar Sharma
No There is no need to learn ASP before learning ASP.Net. .Net is a New Technology by microsoft.You just need some basic knowledge of HTML. rajkumar Sharma
Hello Friends,How are you, In my web application I wanna count no. of characters in ms-word document.I am using reference of com. and Wrote the Code as object filePath="d:\\Test\\test.doc"; object readOnly=false; object missing=System.Reflection.Missing.Value; Word.ApplicationClass wa=new Word.ApplicationClass(); Word.Document cc=wa.Documents.Open(ref filePath,ref missing,ref readOnly,ref missing,ref missing,ref missing,ref missing,ref missing,ref missing,ref missing,ref missing,ref missing); int coun=cc.Characters.Count; wa.Application.Quit(ref missing,ref missing,ref missing); Button1.Text=coun.ToString(); But After running this there is an error of macro. Is there any other way of doing this or How can I remove this error. rajkumar Sharma