Click here to Skip to main content
15,868,016 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: Problem with jQuery and autocomplete Pin
Member 1299665513-Jan-21 5:23
Member 1299665513-Jan-21 5:23 
GeneralRe: Problem with jQuery and autocomplete Pin
Richard Deeming13-Jan-21 6:20
mveRichard Deeming13-Jan-21 6:20 
GeneralRe: Problem with jQuery and autocomplete Pin
Member 1299665513-Jan-21 6:21
Member 1299665513-Jan-21 6:21 
GeneralRe: Problem with jQuery and autocomplete Pin
Member 1299665513-Jan-21 7:01
Member 1299665513-Jan-21 7:01 
GeneralRe: Problem with jQuery and autocomplete Pin
Richard Deeming13-Jan-21 22:14
mveRichard Deeming13-Jan-21 22:14 
QuestionI have created housie game page, but it is loading slow. Pin
Member 150388166-Jan-21 0:04
Member 150388166-Jan-21 0:04 
AnswerRe: I have created housie game page, but it is loading slow. Pin
thatraja8-Jan-21 5:12
professionalthatraja8-Jan-21 5:12 
Questionhow to code following vb code to asp.net code Pin
Asanka Prabath1-Jan-21 19:07
Asanka Prabath1-Jan-21 19:07 
Sub Salesorder()

        Dim found As Boolean = False

        cn.Open()
        cm = New SqlCommand("select * from tblbill where SalesOrderNo like '" & txtInvoiceFor.Text & "'", cn)
        dr = cm.ExecuteReader
        dr.Read()
        If dr.HasRows Then found = True Else found = False
        dr.Close()
        cn.Close()

        If found = True Then
            cn.Open()
            cm = New SqlCommand("update tblbill set INno = @INno where SalesOrderNo=@SalesOrderNo", cn)
            With cm.Parameters
                .AddWithValue("@INno", txtInvoiceNo.Text)
                .AddWithValue("@SalesOrderNo", txtInvoiceFor.Text)
            End With
            cm.ExecuteNonQuery()
            cn.Close()

        End If

    End Sub

AnswerRe: how to code following vb code to asp.net code Pin
Mycroft Holmes2-Jan-21 20:03
professionalMycroft Holmes2-Jan-21 20:03 
AnswerRe: how to code following vb code to asp.net code Pin
Richard Deeming4-Jan-21 23:04
mveRichard Deeming4-Jan-21 23:04 
QuestionUnable to read from web.config Pin
samflex11-Dec-20 7:35
samflex11-Dec-20 7:35 
AnswerRe: Unable to read from web.config Pin
Richard MacCutchan11-Dec-20 7:42
mveRichard MacCutchan11-Dec-20 7:42 
GeneralRe: Unable to read from web.config Pin
samflex11-Dec-20 9:02
samflex11-Dec-20 9:02 
GeneralRe: Unable to read from web.config Pin
Richard MacCutchan11-Dec-20 22:20
mveRichard MacCutchan11-Dec-20 22:20 
GeneralRe: Unable to read from web.config Pin
samflex12-Dec-20 4:16
samflex12-Dec-20 4:16 
QuestionServer not recognizing AD info (SOLVED) Pin
samflex10-Dec-20 10:42
samflex10-Dec-20 10:42 
AnswerRe: Server not recognizing AD info Pin
Richard Deeming11-Dec-20 0:25
mveRichard Deeming11-Dec-20 0:25 
GeneralRe: Server not recognizing AD info Pin
samflex11-Dec-20 3:20
samflex11-Dec-20 3:20 
GeneralRe: Server not recognizing AD info Pin
Richard Deeming11-Dec-20 3:29
mveRichard Deeming11-Dec-20 3:29 
GeneralRe: Server not recognizing AD info Pin
samflex11-Dec-20 7:12
samflex11-Dec-20 7:12 
QuestionSSL Certificate problem with Local IIS, ADFS and Visual Studio Pin
Super Lloyd9-Dec-20 15:54
Super Lloyd9-Dec-20 15:54 
Questionpass the id to the modal Pin
Member 149089649-Nov-20 8:42
Member 149089649-Nov-20 8:42 
AnswerRe: pass the id to the modal Pin
Richard Deeming9-Nov-20 22:02
mveRichard Deeming9-Nov-20 22:02 
QuestionASP.NET Code with Azure AD Authentication Not working in Chrome and Edge Pin
Member 111541884-Nov-20 4:51
Member 111541884-Nov-20 4:51 
AnswerRe: ASP.NET Code with Azure AD Authentication Not working in Chrome and Edge Pin
Richard MacCutchan4-Nov-20 21:46
mveRichard MacCutchan4-Nov-20 21:46 

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.