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
A

AlexeiXX3

@AlexeiXX3
About
Posts
461
Topics
107
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Adding web reference problem because of autodetectcookiesupport
    A AlexeiXX3

    Yes, i remember that problem, long time ago. I had to add to reference as follows: http://servername/WebService.asmx?WSDL&AspxAutoDetectCookieSupport=1 And i dont remember the reason why, but in my code behind in the load event i have this code: Me.webservice.Url &= "?AspxAutoDetectCookieSupport=1" In case you get an error add this part

    Alexei Rodriguez

    ASP.NET help question html

  • Have file uploading in background while continuing Navigation
    A AlexeiXX3

    What if you just open a new pop window and allow the users to upload the files in the popup window For whowing the progress... There are some solutions for that, just google it

    Alexei Rodriguez

    ASP.NET csharp asp-net beta-testing tutorial code-review

  • Make the whole row clickable in IE
    A AlexeiXX3

    Hi there Im using IE6 In the main menu, the options should be clickable in the whole row and not only the text This works fine in firefox, but with IE6 only the text is clickable For example: Messege Borads > ASP.NET Thanks

    Alexei Rodriguez

    Site Bugs / Suggestions csharp asp-net tutorial

  • Sort Results ignoring symbols like ! ? * "
    A AlexeiXX3

    Thanks for the reply Its a good start, but it looks like you are only taking into account the first character and in case it is a pecial symbol you take the second, it wont work if you have values like these:

    DECLARE @Table AS Table( ID Int, [Name] nVarChar(50))
    INSERT INTO @Table SELECT 1, '"The morning..."'
    INSERT INTO @Table SELECT 2, 'The long and...'
    INSERT INTO @Table SELECT 3, '-ABC of Math'
    INSERT INTO @Table SELECT 4, '*Something Else'

    SELECT * FROM @Table
    ORDER BY (SELECT CASE WHEN (UNICODE(SUBSTRING(Name,1,1))< 123)
    THEN UNICODE(SUBSTRING(Name, 2,1))
    ELSE Name End) ASC

    Notice how "The morning..." appears before The Long and... :( Thanks again for your example

    Alexei Rodriguez

    Database css database help question

  • Sort Results ignoring symbols like ! ? * "
    A AlexeiXX3

    Hi, thanks for looking I need to sort the results of my query, lets say i have the following values in my Articles table Id, Title -------------------------- 1, "The less you talk..." 2, The long and... 3, -ABC of Math 4, *Something else The result should look as follows: 3, -ABC of Math 4, *Something else 1, "The less you talk..." 2, The long and... Notice that the title may o may not have or may have more than 1 special character at the beggining Thanks in advance for any help

    Alexei Rodriguez

    Database css database help question

  • web service
    A AlexeiXX3

    The same way you would do in any other class

    Alexei Rodriguez

    ASP.NET tutorial question

  • Get MAC Address
    A AlexeiXX3

    If you are tryint to get mac address to implement some kind of security restriction... I think the MAC address can be changed easily So it could be even more effective to restrict users by ip, eventhough this ip traking wouldnt work as expected when client connect though the same public ip

    Alexei Rodriguez

    ASP.NET csharp asp-net

  • Cache Expiration in ASP.NET
    A AlexeiXX3

    Please sign up with another user so yo can ask the same question again and again

    Alexei Rodriguez

    ASP.NET question csharp asp-net database sysadmin

  • Cache Expiration Problem in ASP .Net
    A AlexeiXX3

    Please sign up with another user so yo can ask the same question again

    Alexei Rodriguez

    ASP.NET question csharp database sysadmin hardware

  • Cache Expiration in ASP.NET
    A AlexeiXX3

    Have you tried setting the cache priority to high or NotRemovable?

    Alexei Rodriguez

    ASP.NET question csharp asp-net database sysadmin

  • Problem with Form based authentication
    A AlexeiXX3
     <allow users="\*" />      
     <deny users="?" />
    

    The first rule applies, in this case allow users = "*" If you want to only allow access to authenticated users, use something like deny users = "?" But never use allow users = "*" as the first rule, because oncea rule applies the ones below are ignored

    Alexei Rodriguez

    ASP.NET security help question workspace

  • Application_Start event in Global.asax won't fire
    A AlexeiXX3

    Jörgen Andersson wrote:

    We have also tested with adding a simple logging procedure to the Application_Start event.

    So, this logging procedure... will it run at least the first time (just after deploying) you request a web form in the application??

    Alexei Rodriguez

    ASP.NET sysadmin

  • uploading published website via FTP
    A AlexeiXX3

    laziale wrote:

    Can you point me in some direction what should I do?

    Get a windows hosting

    Alexei Rodriguez

    ASP.NET csharp asp-net com sysadmin help

  • uploading published website via FTP
    A AlexeiXX3

    laziale wrote:

    Apache/1.3.33 Server

    As i told you before, looks like you dont have a windows server configured with IIS

    Alexei Rodriguez

    ASP.NET csharp asp-net com sysadmin help

  • uploading published website via FTP
    A AlexeiXX3

    It looks like you are getting the file a text Maybe you root directory hasnt been set up to be a .net application and that could be the reason the file is not being treated as a webform What happens if you only type http://www.mysite.com ?

    Alexei Rodriguez

    ASP.NET csharp asp-net com sysadmin help

  • Need suggestion what to do
    A AlexeiXX3

    And whats he problem then?? Just make a webservice in your existing web application and call this webservice from mobile, windows or web application

    Alexei Rodriguez

    Mobile database wcf sysadmin help

  • iPhone Development on Windows
    A AlexeiXX3

    The real address is: http://www.DragonFireSDK.com[^]

    Alexei Rodriguez

    Mobile ios com game-dev beta-testing question

  • Application_Start event in Global.asax won't fire
    A AlexeiXX3

    Sometimes the app wont shut down for a long time after not receiving any requests (or closing any open browser, which has nothing to do), and when you are developing the app, when you run it, it sometimes restatrs the app automatially So, how can you be sure that the app is starting and the event not firing??

    Alexei Rodriguez

    ASP.NET sysadmin

  • Working with Themes
    A AlexeiXX3

    Thats what themes are for Use a theme, and just change the theme

    Alexei Rodriguez

    ASP.NET question

  • Do you see anything wrong with this code?
    A AlexeiXX3

    The value is in the cache for more than a minute, does it have something to do with the datatype being saved? I already tryed utcnow but the result is the same, and also, i tryed using a timespan of 1 minute and guess what... not working either, i dont think its my machine, because it doent work either on my server If you have the time, check it please I know i could use the NoBot control in ajax but i really want to know whats wrong with this

    Private Function IsRobot() As Boolean
    Dim IP As String = Me.Request.UserHostAddress
    Dim key As String = "Contact_" & IP
    Dim obj As Object = Cache(key)
    Dim Counter As Integer = 0
    If obj Is Nothing Then
    Cache.Insert(key, Counter, Nothing, Now.AddMinutes(1), Cache.NoSlidingExpiration)
    Else
    Counter = obj
    End If
    If Counter >= 5 Then
    Me.lblError.Text = "Too many emails"
    Me.lblError.Visible = True
    Return True
    End If
    Cache(key) = Counter + 1
    Return False
    End Function

    Thanks for your time

    Alexei Rodriguez

    ASP.NET sysadmin 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