Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
T

The Tigerman

@The Tigerman
About
Posts
7
Topics
0
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • App development ASP.NET with SQL Server
    T The Tigerman

    You can get these free - Visual Studio Express and SQL Server Express (Google them)

    ASP.NET database csharp asp-net sql-server sysadmin

  • thirdparty cookies
    T The Tigerman

    Why not write your own captcha, that way you are not invoking third party code and cookies...

    ASP.NET question

  • RegEx to replace a string [modified]
    T The Tigerman

    Public Function Change_Text(ByVal strInText As String, ByVal strOutText As String) As Boolean Dim strSubText As String Dim intPos As Integer Dim bolCode As Boolean = False 'Default as OK Change_Text = True 'Clear output string strOutText = "" 'Loop through string Do Until strInText = "" 'Look for opening '[' If Mid(strInText, 1, 1) = "[" Then 'Find closing tag intPos = InStr(2, strInText, "]") 'Extract content strSubText = Mid(strInText, 2, intPos - 2) 'Skip text beyond end tag strInText = Mid(strInText, intPos + 1) 'Check tag information.... Select Case UCase(strSubText) Case "/CODE" 'Closing tag strOutText += "" 'Flag outside code area bolCode = False Case "CODE" 'Opening tag strOutText += "

    "
                            'Flag inside code area
                            bolCode = True
                        Case Else
                            'Unknown [] tag - Flag as error ...
                            Change_Text = False
                    End Select
                ElseIf Mid(strInText, 1, 2) = vbCrLf Then
                    strInText = Mid(strInText, 3)
                    If bolCode Then
                        'Inside Code Tags
                        strOutText += "∓"
                    Else
                        'Outside Code Tags
                        strOutText += ""
                    End If
                Else
                    'Write character to output string...
                    strOutText += Mid(strInText, 1, 1)
                End If
            Loop
        End Function
    
    Visual Basic regex csharp

  • Email Identity
    T The Tigerman

    Need more information, 1) Do you have a source for the email information available 2) Does each user have a unique identification With this information it may be possible to find a solution. :)

    ASP.NET csharp asp-net tutorial

  • web Part application does not running
    T The Tigerman

    More details about the errorcode would be helpful, you may need to update the Web.Config file to show the complete error message, look at the customError section for more details, if you can post the more detailed information then maybe I can help..

    ASP.NET database sql-server sysadmin help workspace

  • How to display the last logged in user from the login page
    T The Tigerman

    You could store the username in a session variable and then display that information.. <%=Session("Username")%>

    ASP.NET question help tutorial

  • Show Image
    T The Tigerman

    Problem is the format of PNG is not compatible with the Response.OutputStream method directly, you need to store the image in a memorystream at then send that to the browser... System.IO.MemoryStream memStream; byte[] bytBuffer; Response.Clear(); Response.ContentType = "image/png"; memStream = new System.IO.MemoryStream(); bp.Save(memStream, System.Drawing.Imaging.ImageFormat.Png); bytBuffer = memStream.ToArray(); Response.OutputStream.Write(bytBuffer, 0, bytBuffer.Length); Response.End(); My C++ skills not good, this is a translation of the VB.NET code that I use.. :-D

    ASP.NET graphics help question
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups