Latest Answer: View state is of maintaining the state of the object until the page is destroyed. In the sense viewstate maintains the state of the object in all the postbacks. Dataset can be stored in viewstate. ...
Latest Answer: Components are packaged in assemblies. Assemblies are the reusable, versionable, self-describing building blocks of .NET applications. The simplest assembly is a single executable that contains all the information necessary for deployment and versioning.x ...
Latest Answer: When you POST a form you specify the location where the form data will be sent to be processed. It can be the same page or a different page. This is determined by the value of the ACTION attribute of the FORM tag. POSTBACK posts the data back to the same ...
One aplication have 50 pages out of 50 , 5 pages shouldn't ask user name and password other 45 should ask user name and password?how will you write the code in web.config?
This is how I have done this in one of our projects:-1. First way is store image in BYTEARRAY while checking UPLOAD CONTROL and hold that image in CACHE. And then store it (bytearray) in Database while
Latest Answer: To upload the image in to the Oracle: if you are using stored procedure then by using command instance object you and pass the image in Binary Format is Request.BinaryRead() and to display the image user the same method i.e. reponse.binarwrite() ...
Latest Answer: HttpCookie l_objCookie = new HttpCookie("myCokie", "myValue");l_objCookie.Expires = DateTime.MaxValue;Response.Cookies.Add(l_objCookie); ...
I am handling an exception using catch block what will happen if there an error occur it in catch block while handling exception?
How can i decrypt a password that had already encrypted using MD5 format in ASP.NET?orHow can I compare password that entered by a user with the encrypted password ( encryption had done using MD5 format) ?
Which method get called between a object is declared and it is collect by the garbage collector.A)DeleteB)Disposec)FinalizeD)Close
View page << Previous 8 9 10 11 [12] 13 14 15 16 17 Next >>

Go Top