Click here to Skip to main content
16,006,378 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionNumber of crystal reports generated in a day ? Pin
Kamal.Afridi11-Aug-08 20:42
Kamal.Afridi11-Aug-08 20:42 
AnswerRe: Number of crystal reports generated in a day ? Pin
Jörgen Andersson11-Aug-08 20:59
professionalJörgen Andersson11-Aug-08 20:59 
Questionmaster page problem Pin
umeshdaiya11-Aug-08 20:05
umeshdaiya11-Aug-08 20:05 
QuestionVB .NET ASP .NET Error Pin
summon_1911-Aug-08 19:19
summon_1911-Aug-08 19:19 
AnswerRe: VB .NET ASP .NET Error Pin
Christian Graus11-Aug-08 19:26
protectorChristian Graus11-Aug-08 19:26 
GeneralRe: VB .NET ASP .NET Error Pin
summon_1911-Aug-08 19:41
summon_1911-Aug-08 19:41 
GeneralRe: VB .NET ASP .NET Error Pin
Christian Graus11-Aug-08 20:18
protectorChristian Graus11-Aug-08 20:18 
GeneralRe: VB .NET ASP .NET Error Pin
summon_1911-Aug-08 20:26
summon_1911-Aug-08 20:26 
No HRM_SPLZ_AREAS is a table.

The following code is to get the rows.

Public Function GetData(ByVal commandar As String) As DataSet
Dim ds As DataSet
Dim AD As OdbcDataAdapter
Try
If conn.State = ConnectionState.Closed Then
conn = New OdbcConnection("dsn=HurmisSystemOra;UID=hurmisplus;PWD=hurmisplus;")
conn.Open()

Dim Mysql As String
Mysql = "alter session set nls_date_format='DD/MM/YYYY'"
command = New OdbcCommand(Mysql)
command.Connection = conn
command.ExecuteNonQuery()
command = New OdbcCommand(commandar)
command.Connection = conn

Else
Dim Mysql As String
Mysql = "alter session set nls_date_format='DD/MM/YYYY'"
command = New OdbcCommand(Mysql)
command.Connection = conn
command.ExecuteNonQuery()
command = New OdbcCommand(commandar)
command.Connection = conn
End If
ds = New DataSet
AD = New OdbcDataAdapter(command)
AD.Fill(ds, "DataGrid")
AD.Dispose()
Return ds
Catch ex As Exception
Throw ex
End Try
End Function
GeneralRe: VB .NET ASP .NET Error Pin
Christian Graus11-Aug-08 20:41
protectorChristian Graus11-Aug-08 20:41 
GeneralRe: VB .NET ASP .NET Error Pin
summon_1911-Aug-08 21:28
summon_1911-Aug-08 21:28 
GeneralRe: VB .NET ASP .NET Error Pin
Christian Graus11-Aug-08 22:10
protectorChristian Graus11-Aug-08 22:10 
QuestionSend string data to an email address Pin
Abbasy Ahmad11-Aug-08 19:16
Abbasy Ahmad11-Aug-08 19:16 
AnswerRe: Send string data to an email address Pin
Christian Graus11-Aug-08 19:31
protectorChristian Graus11-Aug-08 19:31 
Questionmaster page Pin
niki_nilu11-Aug-08 19:01
niki_nilu11-Aug-08 19:01 
AnswerRe: master page Pin
Abhijit Jana11-Aug-08 19:22
professionalAbhijit Jana11-Aug-08 19:22 
QuestionASP.Net 1.1 to 2.0 Migration Help Pin
pashitech11-Aug-08 19:00
pashitech11-Aug-08 19:00 
Questiongetting value of control Pin
kjalandoon11-Aug-08 16:27
kjalandoon11-Aug-08 16:27 
AnswerRe: getting value of control Pin
kjalandoon11-Aug-08 17:05
kjalandoon11-Aug-08 17:05 
Questionhelp with nextval in do while loop Pin
kl01070511-Aug-08 6:56
kl01070511-Aug-08 6:56 
AnswerRe: help with nextval in do while loop Pin
Manas Bhardwaj11-Aug-08 7:22
professionalManas Bhardwaj11-Aug-08 7:22 
GeneralRe: help with nextval in do while loop Pin
kl01070511-Aug-08 8:05
kl01070511-Aug-08 8:05 
QuestionQuestion regarding 'GetPostBackEventReference' and multiple arguments Pin
Lea Hayes11-Aug-08 6:49
Lea Hayes11-Aug-08 6:49 
AnswerRe: Question regarding 'GetPostBackEventReference' and multiple arguments Pin
Lea Hayes11-Aug-08 7:58
Lea Hayes11-Aug-08 7:58 
GeneralRe: Question regarding 'GetPostBackEventReference' and multiple arguments Pin
nyeboy11-Aug-08 15:55
nyeboy11-Aug-08 15:55 
GeneralRe: Question regarding 'GetPostBackEventReference' and multiple arguments Pin
Lea Hayes12-Aug-08 0:11
Lea Hayes12-Aug-08 0:11 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.