I am working on Generating the Code automatically using CodeDom. How can I create a solution file and project file through Code.
Ashwani
I am working on Generating the Code automatically using CodeDom. How can I create a solution file and project file through Code.
Ashwani
I have a web user control. I need to create one property in this control that can be accessed in the main page on client side. How can I achieve this.
Ashwani
In my site when user tries to access the following URL: https://www.iec.executiveboard.com/Members/DecisionSupportCenters/Section.aspx?cid=100012845&sid=100012931#section7878650[^] it redirects me to login.aspx page with the return url specified above, but the url is trucated and it doesnot show "#section7878650" in the return URL. We are using FormsAuthentication. Can anyone help me out.
Ashwani
I need to develop one webservice that will be published globally and will be sold based upon membership. Any Client who has certain username and password can access this service. Web service is developed in .Net Client can be any (might be in .Net or anything platform) Which security mechanism to use for this?
Ashwani
My question is different. I know how to send email. Actually email is send to the user. The body of the mail contains the HTML tages that forms the complete html page. Now I want to post the information from that HTML page to ASP.Net page.
Ashwani
I am creating a site that contains large documents that are stored in the database. I have to provide the search functionality in the web site. so somebody can help me in designing the search functionality. Is there any document avilable that describes the web search functionalty design like yahoo, google etc.
Ashwani
it avoids object type casting
Ashwani
its a new feature in c#2.0
Ashwani
what are generic in c#
Ashwani
I am facing one problem. I am applying theme to a page dynamically. Theme contains styles properties for the LinkButton button having two SkinID="Normal" and SkinID="Highlight" Now there is a LinkButton control on a webpage and by default its SkinID="Normal" Now in javascript I want to change the SkinID of the LinkButton to "Highlight" Is it possible.??
Ashwani
Thanks for your reply. This is what I have answered in the interview. But the interviewer was not agree with me. Can I see it visually(When these objects actually collected by GC) using any tool provided by Microsoft or by any other company.
Ashwani
Hi Somebody has asked me a question in interview. we have two classes Class1 and Class2 public class Class1 { private Class2 obj; public void method1() { obj = new Class2(); } public void method2() { obj.method1(); } } public class Class2 { public Class2() { GC.SuppressFinalize(this); } public void method1() { } } Now in GUI form: onbutton_Click I write the follwing code: Class1 class1 = new Class1(); class1.method1(); class1.method2(); After the above code is finished, WILL Garabage collector collect objects of Class1 and Class2 or not?
Ashwani
I am working on project in c#.net that requires desktop dialing. Requirement: We want to connect EPABX with the Computer Server machine(which is connected to other Client machines by Local Area Network-LAN). When user initiate a event on the client machine for dialing(etc) the request goes to server machine and then server machine sends request to EPABX. Question: 1. How we can connect EPABX with computer server. 2. How server machine send request to EPABX. Please guide.
Ashwani
I want to create RichTextBox in ASP.net. Please guide me from where I get information to develop this control. Ashwani
I want to create dialer application in .Net 2.0. Please guide me how to do this. Ashwani
Thanks, My requirement is to only Insert the new records in a XML file( no modification, deletion) Ashwani
Is its possible that two processes in a computer write the information Simultaneously in one XML file(test.XML) OR I have to use Database Please guide me if it is possible. Ashwani
I have studied reflection in .Net. Through reflection we can get the entire information of assembly and also able to generate the dynamic assemblies. But what is the practical use of Reflection. Where we need to generate dynamic assemblies? Ashwani