1. Firefox Loosing Steam?

    Date: 10/10/05 (Mozilla)    Keywords: browser, web, microsoft

    Net Applications, a provider of Web-based applications that measure, monitor and market Web sites for the Small to Medium Enterprise (SME), today announced its monthly Web site traffic analysis. In September, Netscape Navigator and Apple's Safari continued their modest gains for the second straight month, while FireFox lost market share for the second time in 2005.

    "Opera made news last month when it announced that it will offer its browser for free, without advertising in what appeared to be a response to the wild adoption rate of FireFox," Vince Vizzaccaro, executive vice president of marketing and strategic relationships for NetApplications. "FireFox, Safari, Netscape and now Opera are jockeying for position and implementing aggressive marketing maneuvers which is setting the stage for a very exciting month in October and throughout the remainder of 2005."


    September Browser Market Share:
    Microsoft Internet Explorer - 86.87%
    FireFox - 7.55%
    Safari - 2.39%
    Netscape - 2.16%
    Opera - 0.51%
    Other - 0.52%


    August Browser Market Share:
    Microsoft Internet Explorer - 86.31%
    FireFox - 8.27%
    Safari - 2.20%
    Netscape - 2.02%
    Opera - 0.62%
    Mozilla - 0.51%
    Other - 0.07%

    Source: Market Share by Net Applications
    Copy: Epiac's Place

    Source: http://www.livejournal.com/community/mozilla/328594.html

  2. Nulls and SQL

    Date: 10/10/05 (Asp Dot Net)    Keywords: browser, database, sql

    Okay this has been bothing me for some time now
    whenever i am working with the database (ms-sql 2k)
    i keep running into problems with nulls and empty
    values, I am passing an empty string into the db
    and its fine i pass it through my string cleaner
    function and it can't find the value its trying to
    enter also with number field unless theres a value
    in it the it crashes with the same error my sting
    cleanner causes ... what am i doing wrong





    ### String cleaner function ###
    Function Strip_SQL(ByVal strValue as String)
    Dim ModStrValue As String
    ' the values replacing the char values are actually ascii and are rended by the browser here
    Dim ModStrValue1 As String = replace(strValue,vbCrLf,"[br/]")
    Dim ModStrValue2 As String = replace(ModStrValue1, chr(34),""")
    Dim ModStrValue3 As String = replace(ModStrValue2, chr(9),"    ")
    Dim ModStrValue4 As String = replace(ModStrValue3, chr(13),"[BR/]")
    Dim ModStrValue5 As String = replace(ModStrValue4, chr(39),"'")
    Dim ModStrValue6 As String = replace(ModStrValue5, chr(40),"(")
    Dim ModStrValue7 As String = replace(ModStrValue6, chr(41),")")
    Dim ModStrValue8 As String = replace(ModStrValue7, chr(61),"=")
    Dim ModStrValue9 As String = replace(ModStrValue8, chr(64),"@")

    Return ModStrValue9

    End Function

    ### how the function is places on the request ###
    Dim editorial As String = Strip_SQL(Request.Form("editorial"))

    ### passing the variable to codebehind ###
    Dim EditAdminResort As New Devotion2Motion.AdminComp()
    EditAdminResort.EditResort(editorial )


    ### The function that passes the variable to the query ###
    Public Function EditResort(ByVal editorial As String)
    ' Create Instance of Connection and Command Object
    Dim myConnection As New SqlConnection(ConfigurationSettings.AppSettings("strConn"))
    Dim myCommand As New SqlDataAdapter("sp_call_Resort_Update", myConnection)
    ' Mark the Command as a SPROC
    myCommand.SelectCommand.CommandType = CommandType.StoredProcedure

    ' Add Parameters to SPROC
    Dim parametereditorial As New SqlParameter("@editorial ", SqlDbType.nVarChar, 4000)
    parametereditorial .Value = editorial
    myCommand.SelectCommand.Parameters.Add(parametereditorial )


    ' Create and Fill the DataSet
    Dim myDataSet As New DataSet()
    myCommand.Fill(myDataSet)

    ' Return the DataSet
    Return myDataSet

    End Function


    ### the error ###
    System.Data.SqlClient.SqlException: Procedure 'sp_call_Resort_Update' expects parameter '@editorial ', which was not supplied.

    Source: http://www.livejournal.com/community/aspdotnet/44011.html

  3. Copy & Paste

    Date: 10/13/05 (Computer Help)    Keywords: browser

    I hope someone can help me with this problem.

    I can't seem to copy and paste in Firefox anymore. I'm not sure what exactly started this. I can copy from a textbox into the same text box, but I can't copy from the address bar into a textbox, or from any other browser windows. My windows is up to date, and Firefox is as well. I'm not sure what exactly the problem is, much less how to fix it.

    Thanks in advance!

    Source: http://www.livejournal.com/community/computer_help/508682.html

  4. GD Library

    Date: 10/13/05 (PHP Community)    Keywords: php, browser, apache

    I'm on WinXP and am trying to get the GD library to work. I got the "Fatal error: Call to undefined function: imagecreate()" message.

    From the php manual:

    On windows.

    When you get undefined function image* it means the gd library isnt being used. Check the php.ini file. Make sure the php_gd.dll isnt commented out. Restarting apache should result in the image functions working.

    The GD Library FAQ says the same thing. My extension dir is correct, and I uncomment out the required line. When I load the page in my browser I get:
    Warning

    Unknown(): (null): Unable to initialize module
    Module compiled with module API=20040412, debug=0, thread-safety=1
    PHP compiled with module API=20020419, debug=0, thread-safety=1
    These options need to match

    I can't really make sense of this, and was wondering if you guys could help.

    Source: http://www.livejournal.com/community/php/354706.html

  5. ASP.net and stylesheets

    Date: 10/14/05 (Asp Dot Net)    Keywords: browser, asp

    Okay - ASP.net 1.1, C# code behind. This may be slightly off topic, but I'm not sure if the problem is ASP.net or not.

    I have a button on my page, which when clicked, enables a disabled stylesheet. It kind of mimics a tree view type thing.

    Closed up the page looks like this.

    + AAAAAA
    + BBBBBB
    + CCCCCC

    Expanded it looks like this

    - AAAAAA
    - aaaaa
    - bbbbb

    - BBBBBBB
    - aaaaa
    - aaaaa

    What I'd like to do is click on a plus or minus, change the image (to a plus/minus), and expand/collapse the appropriate sections. I created a custom control to represent the sections, to get around the fact that renders as a in some browsers. Is that the problem? Should I just amend the section of my machine.config file and used
    tags?

    Source: http://www.livejournal.com/community/aspdotnet/44745.html

  6. Help, I'm brain-blocked!

    Date: 10/16/05 (WebDesign)    Keywords: browser, css, html, web

    Hey,

    I've been working on this site for most of the morning. I got a job deconstructing a table based layout into full CSS. After a few setbacks (I couldn't seem to get the floats to display properly in all browsers -- which is a major stipulation) I decided on using absolute positioning.

    Well, now I got the pages displaying the same in all browsers -- except a medium sized glitch -- I can't figure out how to get all three (or two on the second template) to be the same length.

    For example:

    On this page -- http://triplelproductions.com/designs/business/freeordination/index3.html -- The right and left columns are longer than the middle. I can't seem to get them to perfectly match eachother no materr what the amount of content is within any column. (The second template is here if you need to see -- http://triplelproductions.com/designs/business/freeordination/index4.html --) And the CSS is located here: http://triplelproductions.com/designs/business/freeordination/images/tlpcustom1.css

    What I need to do is fix that so all my columns are the same length, no matter how much/little each column contains.

    An alternative to this is using a background color to fill in the space that's left, but when I set the background color for my container it doesn't show.

    I know that's an easy fix, but after staring at this code/site all morning, my eyes are burning and my brain is blocked. So if anyone can offer me any solutions (that does not include major code reworking) please do!

    Thanks in advance guys, you'll be saving me major hours of frustration!!

    cross posted to '[info]'css_forum and '[info]'webdesign

    Source: http://www.livejournal.com/community/webdesign/997648.html

  7. IE/Netscape + Desktop Icons

    Date: 10/17/05 (Computer Help)    Keywords: browser

    I just downloaded the new Netscape onto my laptop because I have a site that I want to stay logged into on three (I have IE and Firefox already) accounts, and I just open whichever browser to do what I need to do on whichever account. But, the new Netscape is logging me into the account that I'm logged into on IE. I can't get it to stay logged into my other account. Do they share cookies or something? Is there some way to fix this so I can stay logged into both accounts?

    Also, my friend just got her computer worked on, and she said that when she got it back, all of her desktop icons (or all of her icons for that matter) were highlighted and underlined and she couldn't get it to go away. Anyone know how to fix this? =/

    Thanks in advance! =)

    Source: http://www.livejournal.com/community/computer_help/511088.html

  8. What's lurking in your PC?

    Date: 10/18/05 (Security)    Keywords: browser, web

    Commentary--Check Point's Dean Ocampo says most people remain unaware of just how vulnerable their Web browsers remain.

    Source: http://news.zdnet.com/What%27s+lurking+in+your+PC%3F/2100-1009_22-5900194.html?part=rss&tag=feed&subj=zdnn

  9. Security flaw touches Windows Media Player, IE

    Date: 10/18/05 (Security)    Keywords: browser, security, microsoft

    "Critical" flaw affects Microsoft's media player and browser, including on Windows XP with SP2, a security firm reports.

    Source: http://news.zdnet.com/Security+flaw+touches+Windows+Media+Player%2C+IE/2100-1009_22-5899448.html?part=rss&tag=feed&subj=zdnn

  10. Problems with Extensions

    Date: 10/19/05 (Mozilla)    Keywords: browser

    My copy of Firefox has stopped responding to "install" links for extensions on sites like Mozilla Update and Mozdev. This is the second or third time this has happened to me, and previously my only recourse was to do a complete reinstall - which mean loosing a lot of my settings and my already downloaded extensions. Is there any way to fix this without such a dramatic recourse. Basically, when I click on the links, absolutely nothing happens. The status bar continues to read "done" and nothing else happens.

    While I'm here I might as well ask something else...it used to be that when I started typing in a browser window when I wasn't in a text box Firefox would automatically start a page search. Now I have to always press ctrl+F first. Is there any way to make it behave in the old way again?

    Thanks

    BTW, I'm using Firefox 1.0.7 on a Windows XP machine.

    Source: http://www.livejournal.com/community/mozilla/330821.html

  11. Netscape update fixes Firefox bugs

    Date: 10/20/05 (Security)    Keywords: software, browser, security, web

    With release 8.0.4, Netscape is now up to date on security patches with the underlying Firefox Web browser software.

    Source: http://news.zdnet.com/Netscape+update+fixes+Firefox+bugs/2100-1009_22-5902868.html?part=rss&tag=feed&subj=zdnn

  12. Firefox sees 100 millionth download

    Date: 10/20/05 (Web Technology)    Keywords: browser

    With 100 million downloads under its belt, Mozilla Foundation looks to upcoming release of the next version of its browser.

    Source: http://news.zdnet.com/Firefox+sees+100+millionth+download/2100-9588_22-5903282.html?part=rss&tag=feed&subj=zdnn

  13. Flock of delays over, Flock debuts

    Date: 10/21/05 (Open Source)    Keywords: blogging, browser, web

    Do we need it? Is a replacement browser the way forward for Web 2.0 applications? Should blogging be done inside your Web client, or is that something for a server? Is this trip really necessary?

    Source: http://blogs.zdnet.com/open-source/?p=475&part=rss&tag=feed&subj=zdblog

  14. New browser gives taste of Web 2.0

    Date: 10/21/05 (Web Technology)    Keywords: rss, browser, web

    Flock is based on Firefox and includes automatic RSS feeds, photo and bookmark sharing, and other next-generation Web technologies.
    Images: The Flock browser's debut

    Source: http://news.zdnet.com/New+browser+gives+taste+of+Web+2.0/2100-9588_22-5905922.html?part=rss&tag=feed&subj=zdnn

  15. mozilla to firefox...

    Date: 10/22/05 (Mozilla)    Keywords: browser, asp, google

    i've been a mozilla user for a while now. (before that i used netscape. (and of course before that i used ie.))
    i thorougly enjoy the tabbed browsing aspect of the browser.

    anyway, i'm trying to make the switch over to firefox, because support for mozilla is waning.

    besides not having the composer, my main complaint with mozilla is that i cannot figure out how to make it load new links on tabs in the background. i have it set to load links on new tabs in the same window... but it makes the new page over top of what i'm doing. i want it to open a tab in the background.
    i'm pretty sure it's not something having to do with the options because i have checked and double checked that, but it is possible i am missing something. if it is there, where is it?
    if it isn't something in the options, is it something i can change some other way?

    oh, and another complaint is that i can't search google just by entering stuff in the address bar and moving down to the search google option. but i've been trying to train myself to use the google search field instead, but i just don't like it.
    is there any way i can set the address bar to do google searches like mozilla does?

    Source: http://www.livejournal.com/community/mozilla/332339.html

  16. touchpad scroll revisited

    Date: 10/22/05 (Mozilla)    Keywords: browser, html

    http://www.livejournal.com/community/mozilla/329996.html

    I need to revisit this issue, that is, firefox/mozilla and the scroll function on my touchpad not working. Like everyone else with this problem, I've tried the about:config, I've downloaded the updated driver for the touchpad, played with the settings on the "mouse" and the touchpad, all to no avail. The function works in absolutely every other program and browser on my computer (including Opera), but I get the little "scroll bar" icon and it refuses to move in firefox, save for once in a great while if I put the cursor directly on the page's scroll bar...

    Any other suggestions?

    Source: http://www.livejournal.com/community/mozilla/332240.html

  17. HTML Tags: Complete Index + Commenting Problem?

    Date: 10/23/05 (Java Web)    Keywords: browser, html

    I find it useful to have a list of HTML tags handy. Today for example I used it to find the strike-through tag. I used the list on CDI. Additionally it provides browser and standards compatibility information. Detailed information is one-click away. BTW: Are you WYSIWYG type? Personally even if I use WYSIWYG I tend to [...]

    Source: http://blog.taragana.com/index.php/archive/html-tags-complete-index-commenting-problem/

  18. Server-side scripts

    Date: 10/24/05 (Web Development)    Keywords: php, browser, html, java, web

    I want to make server-side scripts, but I have never done anything like this. So, I know very little about this subject.

    I need advice on how to get started. More specifically, I need someone to show me how to make a simple website. And then, I think I can do the rest... I believe I can learn PHP by myself. I already know HTML, JavaScript, C, and some other languages. All I need is someone to show me how to start.

    This is what I need:

    I would like someone to show me step-by-step how to create a simple website which would have three things on it:

    1. some text

    2. an input textbox

    3. a submit button

    This website should do the following: When people visit the website and enter some text and click on submit, the browser should send the text to the server. The server then should save the information in a simple text file, and next time when someone clicks on the refresh button, this text should appear on the website at the top of the page. That's all.

    I would like someone to assist me, to tell me how to create a website like this from scratch from start to finish.

    I don't want to install PHP on my computer. I want to open an account at a remote server and learn how to make this simple website.

    I need advice. Where should I open the account? What kind of language should I use? Should I learn Perl or PHP? Can I write the program in C? So, I have a lot of questions. Please help!

    Source: http://www.livejournal.com/community/webdev/259800.html

  19. div question

    Date: 10/26/05 (HTML Help)    Keywords: browser, css

    I'm working on a site for a multimedia arts & science course.

    I work in IE 6.0, but my professor will be checking the design in Safari. The project isn't due until Friday... and I asked him about it, and he said "don't worry about it" (aka, "I don't know"- my professor isn't the brightest crayon in the box)... so even though I'm not going to get points off for this... I just want to know for my own sake... it's DRIVING ME CRAZY!!!!!

    In IE the container div goes all the way to the bottom of the page... however, in Safari there is a gap between the bottom of the div and the page. Is there any way to get rid of this gap in all browsers?

    Here's an example of the page I'm talking about: here, and this is the style sheet that controls it.

    Thanks!! [crossposted in '[info]'css_forum]

    Source: http://www.livejournal.com/community/htmlhelp/2181209.html

  20. help :(

    Date: 10/26/05 (Javascript Community)    Keywords: browser, html, java

    Hello, I'm new to Javascript and I have an assignment for class in which I'm having trouble checking to see if textboxes are blank and to alert to user with window.alert to tell them to enter information, check to see if certain text boxes are numeric from a certain number range, and to validate the correct format.



    1. Create 2 standard HTML files called assignment5.htm and process.htm. The files should do the following:
    a. assignment5.htm
    i. Should be a form that’s action is set to “process.htm”, method is set to “GET”, with the following named textboxes formatted using a table:
    1. FIRST_NAME
    2. LAST_NAME
    3. AGE
    4. PHONE
    ii. The ONSUBMIT event handler for the form should call a function named ValidateForm(). ValidateForm() should do the following:
    1. Check to ensure FIRST_NAME, LAST_NAME, AGE, and PHONE are not blank.
    2. If any of these textboxes are left blank, display an error message using the alert() function with the name of the item left blank and set focus to that text box using the focus() method of the text box left blank.
    3. Ensure that the AGE text box contains a number between 1 and 150. If the age is not this value, display a message box with describing that an invalid number was entered for age and set focus to this text box.
    4. Use the following regular expression to validate the PHONE text box. If it returns false, display a message box detailing that the phone number is invalid and must be in the format (xxx) xxx-xxxx.

    /^\(?(\d{3})\)?[\.\-\/ ]?(\d{3})[\.\-\/ ]?(\d{4})$/

    5. If all these conditions pass, return true and allow the form to go to process.htm.
    b. process.htm
    i. This page receives the information from the first page via the Querystring (URL). You will pull the information out of the document.location.search property and write the following to the browser:

    Hello . You are years old. Your telephone number is .

    Note: Everything in <> is from the assignment5.htm page.


    c. HINT
    i. Use the split(“&”) method off of the document.location.search string in order to break the search string into an array that has each of the name/value pairs in it.
    ii. You can then use the split(“=”) method on each of the elements returned from above to get at the name/value (element 0 = name, element 1 = value).







      Assignment 5








      


  21.     

          

        


        

          

          

        


        

          

          

        


        

          

          

        


        

          

          

        

        

          

      
    Contact Information
    First Name:
    Last Name:
    Age:
    Phone:













      Process





    document.write("Hello 'FIRST_NAME' + 'LAST_NAME'. You are 'AGE' years old. Your telephone number is 'PHONE'. ")
      












    Thanks if anyone can help me.

    Source: http://www.livejournal.com/community/javascript/80676.html

Previous page  ||  Next page


antivirus | apache | asp | blogging | browser | bugtracking | cms | crm | css | database | ebay | ecommerce | google | hosting | html | java | jsp | linux | microsoft | mysql | offshore | offshoring | oscommerce | php | postgresql | programming | rss | security | seo | shopping | software | spam | spyware | sql | technology | templates | tracker | virus | web | xml | yahoo | home