Forum: VB.NET Apr 28th, 2004 |
| Replies: 2 Views: 7,656 Sql Query Hi All
I have a select statement:
Select PERMISSION_BUTTON_ID from ALC_SECURITY_PERMISSION where ROLE_ID = 1
Now I want to store / retrieve the values of the field that I am querying without... |
Forum: VB.NET Apr 27th, 2004 |
| Replies: 6 Views: 29,736 Re: Retrieve Data from a dataset Ok now what I have done to this is:
Dim sQuery As String = "Select PERMISSION_BUTTON_ID from ALC_SECURITY_PERMISSION where ROLE_ID = 1"
'Response.Write(sQuery)
Dim myAdapter As OleDbDataAdapter =... |
Forum: VB.NET Apr 27th, 2004 |
| Replies: 6 Views: 29,736 Retrieve Data from a dataset Hi All
I have created a dataset and from this I want to retrieve values of a column into a variable. How can I do this?
This is the code:
Dim sQuery As String = "Select PERMISSION_BUTTON_ID... |
Forum: VB.NET Apr 26th, 2004 |
| Replies: 2 Views: 10,854 HTML In VB.Net Hi All
I have created webform.asp.vb and wanna use HTML code at places, can somebody please tell me as to how can I use the same..... |
Forum: VB.NET Apr 22nd, 2004 |
| Replies: 11 Views: 15,584 Re: Create Windows Authentication I have not used the recordset as there was some error that I was facing. Here is the code that I am working on:
Dim user As WindowsPrincipal = New... |
Forum: VB.NET Apr 22nd, 2004 |
| Replies: 11 Views: 15,584 Re: Create Windows Authentication Do you have an idea about retrieving a value from a select statement.
ok lemme put it up like this,
I have a table which has a column that contains the ids of the controls on my page. Now... |
Forum: VB.NET Apr 22nd, 2004 |
| Replies: 11 Views: 15,584 Re: Create Windows Authentication Ok I could get that, the error was because a field being used in the select queries had different data types in the two tables. They were supposed to be the same |
Forum: VB.NET Apr 22nd, 2004 |
| Replies: 11 Views: 15,584 Re: Create Windows Authentication Okie...
Please help me out with this error:
here is the code
Dim connectionString AsString
connectionString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\\Documents and... |
Forum: VB.NET Apr 22nd, 2004 |
| Replies: 11 Views: 15,584 Re: Create Windows Authentication O Yes you did answer my question, thanks a lot.....
Apart from this I just wanted to know one more thing,
I am trying to display the controls in a page as per the user logged in. Now I was... |
Forum: VB.NET Apr 21st, 2004 |
| Replies: 11 Views: 15,584 Re: Create Windows Authentication Yeah you are on the right track, thanks.
I am using MS Access as my backend and this is the code that I am writing for accessing the database:
Dim connectionString As String
connectionString =... |
Forum: VB.NET Apr 21st, 2004 |
| Replies: 11 Views: 15,584 Create Windows Authentication Hi All
I am creating an ASP page where I am trying to display controls on the page based on the roles of the user. I have a database wherein I have 5 tables to store the following:
Table 1:... |