nice quote yup the other friend also says what u have guessed thanx bye
kalyan_2416
Posts
-
garbage collector -
garbage collectork thanx got it
-
How to detect a file if it is locked by another processuse a file which is locked u will get an exception handle that exception using try catch block ... Exception handling tat's all
-
garbage collectorhi all i was asked in interview how often the garbage collector i.e. gc.collect() will get invoked i know why? what? about garbage collectore but interviewer asked me will it be for every 5 minutes the method invokes can anyone help me... bye
-
database operation in pageshi all i have got a doubt now i have 5 webpages every page has got database operation.. now while using database which way is cheap work to the server 1) opening connection and closing it when ever page requires a database connection or 2)keep it open the database connection and close it when application is getting closed
-
oops+inheritancehi how to call base class constructor from derived class how to do it? not by instantiaze the base class object.. thanks in advance
-
couple of questionshi all 1) i want to know more difference between destructor and dispose method. if u have any articles please let me know 2) Base b=new Derived() derived d=new Base() which one is illegal and why i have found second question in a paper i could not get a answer for (oops concepts)
-
global.asaxhow to fire application_end application_start gets called but end is not firing what should i do thanks
-
global.asaxhow to fire application_end application_start gets called but end is not firing what should i do thanks
-
www.kal.com/login.aspx to www.kal.comok thanks for it i will look in to that bye
-
www.kal.com/login.aspx to www.kal.comhi all i want to display in the address bar even after navigating to next page i.e. dd.com/login.aspx dd.com/dd.aspx i want to show only dd.com where ever they navigate how to do it .. thanks in adavance
-
webhostingi have two applications when i publish both of the applications i will be getting two different set of publish folders with bin folders(example) in webspace how do i paste two bin folders if i create a sub folders it was not wroking becase it requires to .config files thanks
-
webhostingcan two asp.dotnet applications can be hosted in the same host or not please respond to me thank u
-
sqlserver and msofficei want to know when we use sqlserver as backend.... while using reporting i heard people use msoffice why is it?
-
sqlserver and msofficei want to know when we use sqlserver as backend.... while using reporting i heard people use msoffice why is it?
-
webhostingcan two dotnet applications can be hosted in the same host or not please respond to me thank u
-
webhostingi have two web applications i want to host both the sites in the same webspace can i do it if so how can i do it please help me out... thanks bye
-
inheritancehi all abstract class c { abstract function() } class c1:c { override fucntion() { // } void function() { } } class c2:c1 { c1 obj=new c1() obj.//how do i differenciate that i wanna call overrided function and ordinanry function of c1
-
multiple inheritancei m sorry for that i happy for the response.. i am here to learn... i am not rude on anyone as such!!!!!!!!!!
-
multiple inheritanceclass c { void i1.function_some() { // body } void i2.function_some() { // body } } class c1:c { c dd =new c(); i1 i=(i1)dd; i.funcion_some();-----gets the function of interface i1 in class c i2 i_d=new c(); i_d.function_some();---gets the function of interface i2 in class c with the help of type casting i can get the individual definition of the functions } i think this will lead to some ambguity...!