Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
C

CalaLily

@CalaLily
About
Posts
4
Topics
1
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • 'Oracle Connection timed out'
    C CalaLily

    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

    ASP.NET windows-admin help csharp asp-net oracle

  • Set Selecteditem
    C CalaLily

    See 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

    ASP.NET help question

  • populate dropdownlist
    C CalaLily

    Populate 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"

    Visual Basic database question

  • How to export contect of a richtextbox to a normal textfile
    C CalaLily

    Import the namespace System.IO using Imports System.IO Dim fs As FileStream = New FileStream("c:\temp.txt", FileMode.Create) Dim strText As String = rtfMyTextbox.Text.ToString Dim fw As StreamWriter = New StreamWriter(fs) fw.Write(strText) fw.Close() fs.Close()

    Visual Basic help tutorial question
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups