Latest Answer : Try to use following code :within ur .This would refresh the whole page.To avoid this ,you could embed your page with the report in an iframe and then embed that iframe in your "outer" page.That ...
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) ?
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 : 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 ...
Latest Answer : we use ISqlcommandBuilder interface to add, edit or delete any data in the original database.system.data.ISqlCommandBuilder commandbuilder= new SqlCommandBuilder("dataAdapter"); ...
Latest Answer : The 'Location' attribute of the @OutputCache element specifies the location where the cache should be created. Following are the options for saving ASP.Net cache:1. Any2. Client3. Server4. Downstream5. NoneThe session data location is controlled ...
Latest Answer : Always query data using Reader, views are good as long as the underlying data is static ! Ensure that the source tables have proper indexes for making the query efficients, use stored procedures for DAL ...
Latest Answer : I guess , i am not sure, by using dataviewsdatagrid.datasource = dataset.defaultView or datagrid.datasource = dataview ...
ViewState in ASP.NET IntroductionMicrosoft ASP.NET Web Forms pages are capable of maintaining their own state across multiple client round trips. When a property is set for a control, the ASP.NET saves
Latest Answer : Session variables are maintained for particular session like for particular user only, so any user related information has to be saved in session variable.  While application variables are maintained for whole application. Whole application related ...
Latest Answer : what about viewstate, cache and the good old cookes :) ...