1. New- Need help with Networking a Scanner

    Date: 09/02/05 (Computer Help)    Keywords: asp

    Hello all,
    I recently purchased an EPSON all-in-one printer/scanner/copier and it's set up fine and everything... It was installed on my boyfriend's computer and then I added it as a network printer on my computer so I can print fine from here (we're on a router). Now, my problem is...how can I scan from MY computer? Or can I do it with this one? I know we did it at work but that was a much different type of scanner/printer/copier. I couldn't find any info on the net or in the manual to network the scanner aspect of it...or if it's even possible.

    Does anyone know how or have any suggestions??

    Thanks!

    -Heather

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

  2. Firefox 1.5 Beta Looks Better Than Ever

    Date: 09/11/05 (Mozilla)    Keywords: software, browser, css, html, asp, java

    Recently Steven J. Vaughan-Nichols published on eweek.com his first views pertaining to Firefox 1.5 Beta. The title of his article, hints his impressions on the recently announced software; "1.5 Beta Looks Better than Ever".

    However there are some initial problems. One of the main problems with Beta 1, is the incompatibility with the vast majority of existing extensions programs. Extension developers are aware of this problem, so new, 1.5-compatible extensions should be in place well before the final version of 1.5 hits the street some time in November or December. Mozilla will be releasing a list of 1.5-compatible extensions within the week.

    Improvements Made to Beta 1:
    a) Taking a leaf from Opera browser, works much faster at rendering pages that you have already read.
    b) The overall performance of the browser is better. Gecko, the layout and rendering machine behind the browser, has been tightened up and made faster.
    c) Easy to get rid of private information with the new Tools/Clear Private Data Command.
    d) It is very open-standard friendly. The program comes with support for SV (Scalable Vector Graphics), CSS (Cascade Style Sheets) 2 and 3, (DHTML (Dynamic HTML) and JavaScript 1.6.

    As a beta, without any technical support, without support for 1.0x extensions, it should not be used as a replacement for Firefox 1.0x or any other browser. Come December and its final release, it will be a different story.

    If you are interested in reading the whole article, kindly click the following link: http://www.eweek.com/article2/0,1895,1857423,00.asp

    Regards,

    Omar.-

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

  3. Windows driver verifier tool

    Date: 09/12/05 (IT Professionals)    Keywords: asp, microsoft

    interesting tool for you power geeks out there:

    Power User: Licensed to Drive Windows?

    Microsoft has provided a management tool known as the Driver Verifier Manager. Unfortunately, they didn’t really tell anyone about it.

    To see what I’m talking about, you should first save all open files and close all open programs because the Verifier can, by design, trigger the infamous Blue Screen of Death.

    Now select Start, Run [or use the Windows Key-R shortcut], then type Verifier and press Enter. You should see a dialog box offering you the chance to either view current driver settings or create your own.
    (more in article)

    http://support.microsoft.com/default.aspx?scid=kb;en-us;244617
    SUMMARY
    Driver Verifier is included in Windows 2000, Windows XP, and Windows Server 2003 to promote stability and reliability; you can use this tool to troubleshoot driver issues. Windows kernel-mode components can cause system corruption or system failures as a result of an improperly written driver, such as an earlier version of a Windows Driver Model (WDM) driver. This article describes how to use Driver Verifier to isolate and troubleshoot a driver in the system.


    just an fyi,
    Valis

    Source: http://www.livejournal.com/community/itprofessionals/21960.html

  4. Browser.ini

    Date: 09/14/05 (PHP Community)    Keywords: php, browser, asp, web

    So i've been trying to use get_browser() on my website to test something, and I've been looking at the documentation on php.net (http://us2.php.net/manual/en/function.get-browser.php) and one of the comments mentions taking info from php_browsercap.ini (grabbed from http://www.garykeith.com/browsers/downloads.asp presumably) and putting into browsercap.ini to fix the parsing error messages.

    But I'm not sure where I'd put the php_browsercap.ini file in my directory.

    Any help would be appreciated.

    Thanks!

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

  5. UPDATING views table joins

    Date: 09/14/05 (SQL Server)    Keywords: asp, sql, microsoft

    Alright... imagine this scenario. Server 1 has two tables. Server 2 has views to server 1's two tables.

    From Server 2, you're attempting to execute an UPDATE on said views. (No, you cannot simply update server1 and the two tables directly, that's not an option so don't ask.) If you run a single UPDATE with a WHERE clause against view 1, it'll work fine.

    BUT if you add in an INNER JOIN constraint against view 2, instead of updating just the handful of records you wish to UPDATE , it'll UPDATE EVERYTHING!!!!

    Example:

    -- Server1
    CREATE TABLE tempOne (
    rowid int IDENTITY(1, 1),
    myvalue int
    )

    CREATE TABLE tempTwo (
    rowid int
    )

    -- Server2
    CREATE VIEW viewOne AS (SELECT * FROM server1...tempOne)

    CREATE VIEW viewTwo AS (SELECT * FROM server1...tempTwo)

    -- Insert 5 random values into tempOne then insert '2' and '4' into tempTwo, which will later be used as a constraint

    -- Server2
    -- This works just fine, should return rowid 2 and 4 of viewOne.
    SELECT *
    FROM viewOne t1
    INNER JOIN viewTwo t2
    ON t1.rowid = t2.rowid

    -- This is what does NOT work
    UPDATE viewOne
    SET myvalue = myvalue * -1
    FROM viewOne t1
    INNER JOIN viewTwo t2
    ON t1.rowid = t2.rowid

    Instead of rowid 2 and 4 being UPDATED, ALL 5 rows will be UDPATED. What GIVES?!?! I see via SQL Profiler that the query is sent from Server2 to Server1 and redefined there in a really messed up fashion. Am still trying to wrap my head around how I can rewrite this query. And no, I cannot not use the views and directly jump to Server1 because in my real scenario, it could be ServerX... I don't know until runtime, hence why we have the generic views.

    Help?

    --

    UPDATE: Alright, I've done some more digging and figured a few things out.

    First, this has NOTHING to do with views. The problem has to do with remote server UPDATE statements. I ran some more tests without views but with direct table references as a WHAT IF, and ran into the same results. But when I'd tweak the UPDATE statement slightly, I managed to generate a SQL Server error which I did a lookup on and found the following:

    http://support.microsoft.com/default.aspx?scid=kb;en-us;814581

    Basically the table I'm updating in question, doesn't have any PKs or UNIQUE constraints on it. My basic example, that would be easy to toss in. However the actual Production table I'm dealing with does NOT have any PKs, nor can I enforce any (don't ask, makes me want to sob). In other words, I'm basically screwed.

    *sigh*

    Source: http://www.livejournal.com/community/sqlserver/33825.html

  6. passing info into a ascx file

    Date: 09/15/05 (Asp Dot Net)    Keywords: database, asp

    I have a set of dropdownlists that are used contantly so
    i put them in ascx files. Now i need to set the SelectItem
    in the dropdownlist in the ascx file based on the database
    values pulled out in the aspx file EditResort.aspx for
    editing the resort information. How do i set SelectItem
    in the usercontrol from the aspx file or pass the value
    into the ascx file from EditResort.aspx (i've been told
    that you cannot pass values into a ascx file).

    very confused
    Fuzzygoth

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

  7. heights going haywire in foxfire

    Date: 09/15/05 (WebDesign)    Keywords: asp

    help!
    http://www.paceprints.com/cal.asp
    The probelms is the iFrame.. on the right..
    On IE it all fits.. when i get into foxfire the height isnt the same.. for that page....

    i dont know why..

    any clues?

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

  8. Content Swap Javascript

    Date: 09/17/05 (Javascript Community)    Keywords: php, asp, java

    Does anyone know of a javascript that will swap the content block of text out in a page template, pulling the content from a directory of include files? I can do this in PHP, but the site I'm working on requires ASP. I've asked in other communities re: the ASP, but I was thinking there might be a JS file that could handle this as well. TIA.

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

  9. ASP Content Swap Script

    Date: 09/17/05 (WebDesign)    Keywords: php, asp

    Does anyone know of an ASP script that will swap the content block of text out in a page template, pulling the content from a directory of include files? I can do this in PHP, but the site I'm working on requires ASP. TIA.

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

  10. ASP Content Swap Script

    Date: 09/17/05 (Web Development)    Keywords: php, asp

    Does anyone know of an ASP script that will swap the content block of text out in a page template, pulling the content from a directory of include files? I can do this in PHP, but the site I'm working on requires ASP. TIA.

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

  11. more confused

    Date: 09/19/05 (Asp Dot Net)    Keywords: asp, web

    Based on my last post this is where i have goten and its still not working
    and is returning a error message as follows, i am useing .net vb what am
    i doing wrong?

    Compiler Error Message: BC30456: 'FindByValue' is not a member of 'System.Web.UI.WebControls.ListItem'.
    Source Error:
    Line 19: End Get
    Line 20: Set
    Line 21: dsCountryDD.SelectedItem.FindByValue(Value) = true
    Line 22: End Set
    Line 23: End Property
    Source File: c:\inetpub\wwwroot\devotion2motion.com\UserControls\CountryDD.ascx Line: 21


    countryDD.ascx page

    [%@ Inherits="Devotion2Motion.DropDownsComp" Src="../CodeBehind/DropDowns.vb" ClassName="CountryDD"%]
    [script language="vb" runat="server"]

    Sub Page_Load()
    If IsPostback = True Then

    End If

    Dim CountryDD As New Devotion2Motion.DropDownsComp()
    ' Select the country dropdown list
    dsCountryDD.DataSource = CountryDD.GetCountryDD()
    dsCountryDD.DataBind()

    End Sub

    Public Property Value As Integer
    Get
    Return dsCountryDD.SelectedItem.Value
    End Get
    Set
    dsCountryDD.SelectedItem.FindByValue(Value) = true
    End Set
    End Property

    [/script]
    [asp:DropDownList DataTextField="country" DataValueField="countryID" ID="dsCountryDD" runat="server"/]


    control in the aspx page
    [UserContol:CountryDD Value='[%# DataBinder.Eval(Container.DataItem,"countryID") %]' runat="server"/]

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

  12. MyWeb

    Date: 09/20/05 (WebDesign)    Keywords: asp, web, spam, yahoo

    I work for a great dot-com and everyone here is an expert in some aspect of the Web. As it happens the core techie team is much smaller than the other specialities. As a result it tends to be myself or my team who find new sites or recommend trustworthy technical resources and I'd like to widen that field a bit.

    Yahoo has a system called My Web 2.0 (beta) which I'd love to merge with '[info]'webdesign (this isn't cross-posted). I'm always torn when someone posts a link to a handy new site because when I'm grumpy it looks like spam but when I'm in a better mood the links are almost always useful. I want to get more '[info]'webdesign recommendations but I don't want to encourage people to post links here more often! I think My Web 2.0 is the solution (er, no, I don't work for Yahoo!).

    In short, I'd like to swap My Web 2.0 community invites with people on this group and with my work-based Yahoo alias. I'm Andrew and if you'd like my to invite you to the community you'll need to leave your email as a comment. I suggest either screening the comment so spam-bots can't find it or writing like 'andrew at angrysockpuppet dot com'. I wouldn't mind if people wanted to put their own sites into the system too but perhaps we could tag them "homepages" or "mysite", etc, or even "lj webdesign" as appropriate.

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

  13. Forms Authentication problems

    Date: 09/24/05 (C Sharp)    Keywords: database, asp, web

    Hey all,

    I've been running into a seriously weird problem of late... I have a Virtual Directory set up on my dev machine, on which I've developed my personal website. I have forms authentication and it's working fine. I come to deploy it under my pre-prod server (which is now a Website rather than a V. Dir.) and forms authentication gives me grief: once authenticated, it displays a blank page (correct address, but blank).

    On the same machine, I stop the website and create a virtual directory, specifying the same location. Not a single file or permission changed. Bingo, lets me in. Anyone have any info on this?

    Config: ASP.NET v 1.1, Forms Authentication done by a user control. No database, just DataSets running from .config files (I really don't foresee much traffic... Me, a couple of friends. I'm lucky if I get one hit a week outside of my own usage). Using a templating scheme as suggested by Joe Agster on devx here. My authentication code in a nutshell:

    if (Authenticate(UserTextBox.Text, PassTextBox.Text))
    {
    FormsAuthentication.SetAuthCookie(UserTextBox.Text, PersistentCheck.Checked);
    Response.Redirect(Request.ApplicationPath + "/default.aspx");
    }
    else
    {
    CommentLabel.Text = "Wrong credentials, please try again.";
    CommentLabel.Visible = true;
    }

    Any idears?

    Thanks in advance!

    Source: http://www.livejournal.com/community/csharp/36027.html

  14. ASP script

    Date: 10/01/05 (IT Professionals)    Keywords: asp, java, web

    Presently I work as the webadmin for the college that I attend. Presently my college is in the process of an IT overhaul and recently my boss came to me and asked me to create a webpage which may be set as everyone's background and run solely inhouse. This page needs to display the current date & time and the users NAT'd IP address. I noticed that Auditmypc using java would display your internal IP address. The reason for this page is so that when we go to VNC a persons computer we know what their IP address is and this will eliminate our need to sit there and guess which computer they are on. They could simply just read off their IP address. I searched all of my ASP books and ASP data access books and could find nothing about this. I also checked the MSDN developer network and still nothing. I also checked hotscripts.com and several other script locations and could find nothing on how to do this and if it would even be possible. If it cannot be set as the background we would just make a shortcut to the page. Presently we do not host our webpage internally so the script would need to be executed on a remote server however it is in an aera of the site that would be locked down unless you were on our LAN.
    Is this kind of script legal? I could find nothing that would imply that it was or was not.
    In addition how would I do this?
    Any and all advice in regards to this would be greatly appreciated.
    Forgive my ignorance, this is a unique resquest and something that I have never encoutered before and I would like to honor it.

    Please advise.

    Source: http://www.livejournal.com/community/itprofessionals/24080.html

  15. ASP.NET

    Date: 10/02/05 (Web Development)    Keywords: php, asp

    Hey guys, don't ever really post here, but read alot. I'm primarily a PHP developer and am looking to move into doing ASP.NET (preferably C# not VB) and was hoping maybe someone would have some ideas on some good resource sites that might help me get started in this direction. Thanks in advance.

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

  16. Flaw found in Kaspersky antivirus

    Date: 10/04/05 (Security)    Keywords: software, asp, virus, antivirus

    A serious flaw could affect a whole range of Kaspersky's antivirus software--including third-party products, a researcher has warned.

    Source: http://news.zdnet.com/Flaw+found+in+Kaspersky+antivirus/2100-1009_22-5887857.html?part=rss&tag=feed&subj=zdnn

  17. Accessing elements in a Master file.

    Date: 10/12/05 (Asp Dot Net)    Keywords: asp

    I've got a master file containing label controls. I want to access these labels within the script files themselves. Can anyone help me with the correct approach? (I'm working with .NET 2.0)

    details:

    Layout.Master contains: lblHeader1 and lblHeader2 label contols.

    Script.aspx uses c# code-behind. I want Script.aspxc to be able to access the labels in Layout.master

    Thanks!

    UPDATE: I was mispelling my control name. Grrr, here's is an example of how to change the label within the masterfile :

    ((Label)Master.FindControl("lblHeader1")).Text = "LALA";

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

  18. ASP help

    Date: 10/14/05 (Web Development)    Keywords: php, asp, web

    I'm trying to install a script to send an email from a form on a website. I'm primarly a PHP programmer so this would super easy to do for me normally. But the site I'm working with has to use ASP, which I don't know (the client doesn't seem to think that's an issue though). I found some mail scripts on a site or two but I get errors when I try to get them to work.

    Example 1
    Example 2

    The site is hosted with EarthLink and I can't seem to make heads or tails of their support center so that's no help. I'm not sure if there's a setting I have to change or something in order to get this email thing to work. Any ideas? I'm stumped and the deadline is looming.

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

  19. 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

  20. help!!

    Date: 10/17/05 (Web Development)    Keywords: css, html, database, asp, web

    I'm going freakin' insane here, and it is (of course) because of the different ways IE and Firefox display HTML and CSS.

    Here is my site:

    http://www.shifuimam.com/site.zip

    I can't post links to it, because the only Windows web server I have access to is from my university, and it's password-protected.

    There are three pages in that archive, plus all the includes and whatnot to make them display properly. browse.asp displays fine in IE and Firefox. faq.asp and category.asp, however, shift the content of the page down a bit for no explicable reason. I thought it was because of the tables on those two pages, but when I added a table to another page that was working fine, it displayed without any problems.

    Any help would be greatly, greatly appreciated.

    Oh - the databases are also included so all the stuff displays correctly. I know some of you might tell me to not use Access, and I normally wouldn't, but my teacher in this class requested we use Access databases so that he could see our database structure more easily.

    Thanks in advance for any help provided!!

    x-posted between '[info]'webdesign and '[info]'webdev

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

  21. 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