User Profile

Collapse

Profile Sidebar

Collapse
aliyalcin
aliyalcin
Last Activity: Sep 14 '12, 05:14 AM
Joined: Sep 3 '12
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • aliyalcin
    replied to VB Logic
    Hi kirubagari,
    You can use the following function.

    Code:
        Public Function stringProcessor(ByVal inputString As String) As String
            Dim result As String = String.Empty
            Dim stringList As List(Of String) = inputString.Split("-"c).ToList()
            If stringList.Count > 0 AndAlso stringList.Count = 5 Then
                result = stringList(0) & "-" & stringList(stringList.Count-1)
    ...
    See more | Go to post

    Leave a comment:


  • aliyalcin
    replied to WebForm routing and cyrillic
    Hi bary40,
    your url is encoded.
    If you show correct url, you must use this code:
    Code:
    Server.UrlDecode("your encoded url");
    Good Luck :)
    See more | Go to post

    Leave a comment:

No activity results to display
Show More
Working...