Click here to Skip to main content
16,003,474 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: How do I read contents of iis log in windows\system32\Logfiles\w3svc1? Pin
Richard Deeming25-Nov-15 2:38
mveRichard Deeming25-Nov-15 2:38 
GeneralRe: How do I read contents of iis log in windows\system32\Logfiles\w3svc1? Pin
samflex25-Nov-15 6:12
samflex25-Nov-15 6:12 
QuestionLinq query adding results to a new table Pin
byka23-Nov-15 9:51
byka23-Nov-15 9:51 
Questionasync and await in asp.net Pin
Anil Sharma198323-Nov-15 1:25
professionalAnil Sharma198323-Nov-15 1:25 
AnswerRe: async and await in asp.net Pin
Richard Deeming23-Nov-15 2:19
mveRichard Deeming23-Nov-15 2:19 
AnswerRe: async and await in asp.net Pin
ZurdoDev23-Nov-15 2:57
professionalZurdoDev23-Nov-15 2:57 
QuestionStudent Grade and Grade Point Callculation Pin
Aliyu Usman21-Nov-15 11:45
Aliyu Usman21-Nov-15 11:45 
AnswerRe: Student Grade and Grade Point Callculation Pin
Garth J Lancaster21-Nov-15 12:19
professionalGarth J Lancaster21-Nov-15 12:19 
QuestionStored Procedure returns no column in entity framework Pin
Er. Aamir Khan KCNIT Banda20-Nov-15 19:49
Er. Aamir Khan KCNIT Banda20-Nov-15 19:49 
AnswerRe: Stored Procedure returns no column in entity framework Pin
Richard MacCutchan20-Nov-15 21:55
mveRichard MacCutchan20-Nov-15 21:55 
GeneralRe: Stored Procedure returns no column in entity framework Pin
Er. Aamir Khan KCNIT Banda20-Nov-15 22:01
Er. Aamir Khan KCNIT Banda20-Nov-15 22:01 
AnswerRe: Stored Procedure returns no column in entity framework Pin
ZurdoDev23-Nov-15 2:58
professionalZurdoDev23-Nov-15 2:58 
QuestionChart Control Pin
BobbyStrain20-Nov-15 18:09
BobbyStrain20-Nov-15 18:09 
AnswerRe: Chart Control Pin
ZurdoDev23-Nov-15 2:59
professionalZurdoDev23-Nov-15 2:59 
GeneralRe: Chart Control Pin
BobbyStrain26-Nov-15 5:49
BobbyStrain26-Nov-15 5:49 
Questionjquery auto complete with oracle and vb.net Pin
Member 1215608920-Nov-15 9:28
Member 1215608920-Nov-15 9:28 
i have a problem using the auto complete with oracle, when i use @SearchText i don't now how fix it

VB.NET
Imports System.Collections.Generic
Imports System.Data.OracleClient
Imports System.Data
Partial Class VB
    Inherits System.Web.UI.Page

    <System.Web.Script.Services.ScriptMethod(), _
    System.Web.Services.WebMethod()> _
   Public Shared Function SearchCustomers(ByVal prefixText As String, ByVal count As Integer) As List(Of String)
        Dim conn As OracleConnection = New OracleConnection
        conn.ConnectionString = ConfigurationManager _
         .ConnectionStrings("conexss").ConnectionString
        Dim cmd As OracleCommand = New OracleCommand
        cmd.CommandText = "select SITIOSEDENAME from INV_SITIOSEDE where " & _
        "SITIOSEDENAME like @SearchText || '%'"
        cmd.Parameters.AddWithValue("@SearchText", prefixText)
        cmd.Connection = conn
        conn.Open()
        Dim customers As List(Of String) = New List(Of String)
        Dim sdr As OracleDataReader
        sdr = cmd.ExecuteReader
        While sdr.Read
            customers.Add(sdr("SITIOSEDENAME").ToString)
        End While
        conn.Close()
        Return customers
    End Function

Public Function SearchCustomers() As System.String[]

    End Function
End Class

AnswerRe: jquery auto complete with oracle and vb.net Pin
Richard Deeming23-Nov-15 2:16
mveRichard Deeming23-Nov-15 2:16 
QuestionEncryption / Decryption Pin
jkirkerx20-Nov-15 7:51
professionaljkirkerx20-Nov-15 7:51 
AnswerRe: Encryption / Decryption Pin
ZurdoDev23-Nov-15 3:01
professionalZurdoDev23-Nov-15 3:01 
GeneralRe: Encryption / Decryption Pin
jkirkerx24-Nov-15 12:23
professionaljkirkerx24-Nov-15 12:23 
QuestionMSchart isn't show completely Pin
Member 1154563919-Nov-15 0:19
Member 1154563919-Nov-15 0:19 
AnswerRe: MSchart isn't show completely Pin
ZurdoDev23-Nov-15 3:00
professionalZurdoDev23-Nov-15 3:00 
QuestionMVC Forum ? Pin
John C Rayan17-Nov-15 1:20
professionalJohn C Rayan17-Nov-15 1:20 
AnswerRe: MVC Forum ? Pin
ZurdoDev23-Nov-15 3:00
professionalZurdoDev23-Nov-15 3:00 
GeneralRe: MVC Forum ? Pin
John C Rayan23-Nov-15 22:26
professionalJohn C Rayan23-Nov-15 22:26 

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.