Search Results

1
vote
6answers
653 views

Dropdown controls in ASP.NET 2.0

I am using a codebehind page in ASP.NET to perform a SQL query. The query is loaded into a string, the connection is established (To Oracle), and we get it started by having the connection perform …
0
votes
4answers
2k views

Passing a outside variable into a <asp:sqldatasource> tag. ASP.NET 2.0

I'm designing some VB based ASP.NET 2.0, and I am trying to make more use of the various ASP tags that visual studio provides, rather than hand writing everything in the code-behind. I want to pas …
3
votes
4answers
1k views

Page.Load issue in ASP.NET 2.0

I am trying to aid another programmer with a page called Default.aspx with a code-behind section, and unfortunately I am at a bit of a loss. Partial Class _Default Inherits Overhe …
1
vote
2answers
79 views

Constructing a good search query using system.data.oracleclient

I am constructing a search function in a class to be used by several of our asp pages. The idea is simple, take a search term from the user and query the database for the item. Currently I am doi …
0
votes

Dropdown controls in ASP.NET 2.0

Actually, with a little help here at the office, I think we may have found our own solution. If we create a new ListItem, one of the constructors allows for you to define text AND value, an …
0
votes

Something like viewstate and session

I'm starting to think the answer shown in the following question will work: http://stackoverflo …