Thanks so much. i began programming with ASP.NET with VB.NET this past summer for a company I worked for and used quite a few of their asp.net books, but never bought my own. Is there any ASP.NET / ADO.NET books that you could recommend that would be a great all-around reference for designing in...
thanks alot Isadore!
I think i'm going to develop a small application that will show for example: customer information relating to an order from drop down menus and textboxes. I also would like to do a tutorial on a log-in application (possibly to view customer information). I'd also like to...
I'm wanting to develop a classroom asp.net tutorial, but don't want to make it too complicated for those who aren't programmers. I'm wanting to use asp.net & vb.net for the tutorial and do a connection to an access database (add, delete, updates possibly). I was wondering if anyone knew of any...
hi, i'm a newbie when it comes to LDAP (in the process of learning). I'm using PuTTY to test some search queries, etc....and i'm having problems accessing a few objectClasses. The directory is for a college and it stores information about students, faculty, staff, which would include name...
I got it to work like this (I used '&' instead of '+'), but
when the drop down list populates, the two fields are right next to each other like = FirstNamedInsured32
How can i put a space or tab in there?
this is the error i get on run:
Exception Details: System.InvalidOperationException: The provider could not determine the Double value. For example, the row was just created, the default for the Double column was not available, and the consumer had not yet set a new Double value.
I have a drop-down menu which populates 3 textboxes based on the selection in the drop-down menu. The drop-down menu is populate thru TablePolicy, and fills the 3 textboxes from TablePolicy. I also have a search set up in one of the textboxes (search by Claim Number), which populates other...
I was working on the same concept the other day. Maybe this will help. It works for me....
Private Sub ddlInsured_SelectedIndexChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ddlInsured.SelectedIndexChanged
connection.Open()
Dim query As...
this is an old thread, but i'm having a problem and maybe someone can look at my code. I want to display two fields in a drop-down list and here is my code. Can someone tell me what is wrong with it?
Sub FillInsuredDropDownList()
Dim strMasterClaimsRecord As String = "SELECT...
I'm using the following on page load:
If Not IsPostBack Then
DropDownList1.Items.Insert(0, "Please Choose")
End If
And this is what i'm using for my Selected Index Changed:
Private Sub ddlInsured_SelectedIndexChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles...
I know this is an old post, but what the heck. I'm doing the same thing with the following code and it works fine:
If Not IsPostBack Then
DropDownList1.Items.Insert(0, "Please Choose")
End If
However,
if i select "Please Choose" in the drop-down menu after selecting another item, it gives me...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.