We are having a problem with an ASP.net application after moving it to Windows 2003-IIS6 from Windows2000-IIS5. At intervals of 3-4 days the application throws an 'Oracle Connection Timed out' exception .Once it throws this exception ,all attempts to connect to this web site results in the same exception ..basically the application never recovers. We kill the worker process to get the application working again.We had no issues with the application when it was on IIS5-Win 2K. The code was not changed and was moved as is to the Win 2003-IIS 6.We added a few registry settings but this did not help either -to HKEY_LOCAL_MACHINE\SYSTEM\CURRENTCONTROLSET\SERVICES\TCPIP\PARAMETERS \MaxUserPort --- 30000 Decimal \TcpTimedWaitDelay --- 30 Decimal
C
CalaLily
@CalaLily
Posts
-
'Oracle Connection timed out' -
Set SelecteditemSee if this helps! Assuming mydropdownlist is the name of your dropdownlist control and MyDatagrid is the name of your datagrid control,and assuming you want to set the dropdownlist to the 5th item (index=4):- dim dgItem as DatagridItem dim ddList as dropdownlist for each dgItem in MyDatagrid.items ddList = ctype(dgItem.findControl("MyDropDownList"),DropDownList) ddList.selectedIndex = 4 next
-
populate dropdownlistPopulate a dataset with data from the table containing the first_name columns.Then set the following properties of the combo-box(dropdown):- ComboBox1.datasource = name-of-dataset.Tables(0) ComboBox1.DisplayMember = "first_name" ComboBox1.ValueMember = "first_name"
-
How to export contect of a richtextbox to a normal textfile