I've double checked that the names for everything are correct, but I just can't seem to get this to work.

Any help you can give me would be greatly appreciated.

Thanks!
--Lisa

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

  • koders.com

    Date: 04/26/05 (Web Development)    Keywords: php, programming, asp, sql, java, jsp

    http://www.koders.com/
    Koders.com is the leading search engine for open source code. Our source code optimized search engine provides developers with an easy-to-use interface to search for source code examples and discover new open source projects which can be leveraged in their applications.


    excellent site for help with your computer programming. there seems to be a good bit of source code in here on these languages: Ada, ASP, Assembler, C, C#, Cpp, ColdFusion, Delphi, Eiffel, Erlang, Fortran, Java, JavaScript, JSP, Lisp, Lua, Mathematica, Matlab, ObjectiveC, Perl, PHP, Prolog, Python, Ruby, Scheme, Smalltalk, SQL, Tcl, VB, VB.NET

    i wish they included verilog.

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

  • Open source does not end corporate intrigue

    Date: 04/26/05 (Open Source)    Keywords: software, asp

    Just because a piece of software is open source does not mean we are no longer subject to corporate intrigue.David Berlind and this blog's own Joe Brockmeier combine to teach that lesson today. David explains how JasperReports is being turned back into a commercial product. Joe explains a game of chicken between Sun and IBM [...]

    Source: http://blogs.zdnet.com/open-source/?p=254

  • Hello again!

    Date: 04/28/05 (C Sharp)    Keywords: database, asp, web

    It's time for another round of questioning from '[info]'julisana!

    Alright. I'm not sure if this question would be more suited in '[info]'aspdotnet, but I figured I'd ask here, anyway. I've got a web application, with an external data access layer for connecting and accessing a database. The problem I'm running into is this:

    What's the best way to connect the data layer to the pages!

    Also, and this is just a dumb little piddly question: Seeing how this is a web application, should the file format for my data layer be *.cs or *.aspx?

    Thanks so much!
    --Lisa

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

  • Open source does not end corporate intrigue

    Date: 04/26/05 (Open Source)    Keywords: software, asp

    Just because a piece of software is open source does not mean we are no longer subject to corporate intrigue.David Berlind and this blog's own Joe Brockmeier combine to teach that lesson today. David explains how JasperReports is being turned back into a commercial product. Joe explains a game of chicken between Sun and IBM [...]

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

  • asp tables and postbacks

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

    I seem to have forgotten that when using dynamically loaded asp tables, on the postback all your table data goes away. Any recommendations for the best way to preserve state of a table on the postback?

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

  • Host Needed

    Date: 05/10/05 (Web Development)    Keywords: asp, sql, microsoft

    I'm looking for a good host that offers ALL of the following

    Coldfusion
    ASP.NET
    Microsoft SQL Server

    Does anyone have any good recommendations? Thanks :)

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

  • LAMP vs. Microsoft

    Date: 05/11/05 (Web Development)    Keywords: php, mysql, asp, sql, security, linux, microsoft, apache

    I have to do a report my class Technical Writing. I have chosen to do a report on the LAMP Architecture vs. Microsoft Line of products. LAMP being Linux, Apache Server, MySQL, and PHP. Microsoft being Microsoft Windows, IIS Server, MS SQL Server, and ASP.NEt. What do you guys think is best? Are there any security flaws in one or the other? Which is more efficient altogether?
    If you could help me with this, I would be very appreciative.

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

  • Guide to Geek Girls

    Date: 05/10/05 (Computer Geeks)    Keywords: asp

    while searching for girly cases, i found this.
    although generally incorrect, kind of funny that it exists.


    Guide to Geek Girls

    Don't ever try to force the issue, or make crazy demands that she choose between her computer and you. Remember, her computer has been there for her whole life; you are a new interloper she hasn't quite grasped yet.

    Source: http://www.livejournal.com/community/computergeeks/681488.html

    1. My expertise lies elsewhere

      Date: 04/05/05 (Asp Dot Net)    Keywords: asp, jsp, web

      Hey everybody, '[info]'julisana again.

      I'm running into a little snag with webforms. I'm a bit more experienced in this area using JSP, as I actually know what the proper command for it is. But anyway. I'm looking for the command/class in C# that would be comporable to the request.getParameter(); function available in JSP (It's used to get form parameters that are submitted across multiple pages using sessions.

      But, what I'm trying to do is not exactly that. I've got a web form that has a function attached to the submit button. I'd like that function to be able to pull all the values off of the form and stick them into a session to be retrieved on the next page, and I'm not quite sure how to do it in ASP.NET using C#.

      Any help you can give me would be greatly appreciated.

      Many Thanks!
      --Lisa

      P.S. if this is a little disjointed, I apologize. I'm running on a poor night's sleep and not functioning quite normally.

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

    2. Safari is sucking the life out of me

      Date: 04/06/05 (Asp Dot Net)    Keywords: browser, asp, java, web

      I'm having a problem that I hope someone may be able to help with.
      I have some .NET and Javascript code that works in IE, NN, Moz, and Opera BUT it is not working in Safari.


      I have a webform called Input.aspx

      The Input.aspx.vb page in Page_Load has these two lines:
      btnSubmit.Attributes.Add("onClick", "javascript: return Validate(event, this);")
      GetPostBackEventReference(Page)

      The Input.aspx page has a button btnSubmit and some Javascript
      In the javascript I am using a flag called "problem"
      When problem is true I return false from the event which stops the further propagation of the btnSubmit's click.
      When problem is false I
      a. hide a span that encloses btnSubmit
      b. show a span that says, "Processing...Please Wait"
      c. return true

      This works in IE, NN, Mozilla, and Opera.
      The problem is Safari.
      In Safari, it performs a, b, and c, but the btnSubmit Server Side Click event doesn't happen.

      So, I thought, okay I'll just call __doPostBack right after step b. The problem with that is that the Server Side Click happens twice then in IE, NN, etc.

      I can't figure out what the hell Safari is doing (or not doing, really) with the __doPostBack?

      Here is the Javascript in Input.aspx
      //some validating stuff
      //assume that at this point problem is either "true" or "false"
      function Validate(e,r)
      {
      if (problem == "true") // problem, cancel event
      {
      return false;
      e.returnValue = false;
      }
      else // no problem, continue
      {
      // hide button, show processing gif, continue postback
      lbutton.style.display = "none";
      lprocessing.style.display = "inline";
      return true;
      e.returnValue = true;
      }
      }


      All browsers (including Safari) are performing Validate upon btnSubmit onClick event.
      All browsers except Safari are continuing on with the Server Side Click event of btnSubmit after returning from the function Validate().

      Any ideas why Safari just stops?

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

    3. Alright...

      Date: 04/07/05 (WebDesign)    Keywords: browser, html, asp

      I've got a small question. I know I should know the answer to this, but dern if I can't figure it out.

      I've got an ASP.NET page written with C# (code located at http://images.julisana.com/ellie/index.aspx.txt You will have to save it to view the code, otherwise the browser tries to render it and fails miserably) with a form that is supposed to: send an e-mail upon submission. The action element of the form is set to go to submit.aspx (code located at http://images.julisana.com/ellie/submit.aspx.txt Same rules apply for this one too). So, what I want to know is, why will it send the e-mail, but not continue to the next page. Do I need to add a call to my C# scripting that tells it to go to submit.aspx, despite the fact that the action element is set to that? Or what?

      Thanks much!

      Update: Response.Redirect("pagename.html"); was the command I was looking for.

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

    4. HELP PLEASE!!!!

      Date: 04/08/05 (Asp Dot Net)    Keywords: database, asp, sql, microsoft

      Hello peoples, I am having a bitta trouble with my code and can't seem to find an answer. Im currently running XP Pro with SP2, IIS 5.1, and try to do a simple DSNless SQL Update from a form connecting to a Access 2000 database. The ASP code is as follows.

      <% 
      	Dim strDataPath, objConnection
      	strDataPath = Server.MapPath("rest.mdb")
      	Set objConnection = Server.CreateObject("ADODB.Connection")
      	strConnectString = "Provider=Microsoft.Jet.OLEDB.4.0;"_
      	+ " Data Source= " & strDataPath & ";"
      	objConnection.ConnectionTimeout = 15
      	objConnection.CommandTimeout = 10
      	objConnection.Mode = 3
      	
      	if objConnection.State = 0 then
      	objConnection.Open strConnectString
      	end if
      			
      	Dim strSQL, objRS
      			
      	strSQL = "SELECT * FROM food"
      	Set objRS = Server.CreateObject("ADODB.RecordSet")
      	objRS.Open strSQL, objConnection,3,3
      	objRS.AddNew
      	objRS("tableno") = Request.Form("tableno")
      	tableno = Request.Form("tableno")
      	objRS("people") = Request.Form("people")
      	people = Request.Form("people")				
      	objRS.Update
      
      	Set objRS = Nothing
      	objConnection.Close
      	Set objConnection = Nothing
      			
      	Response.Redirect("placeorder2.asp?tableno=") + tableno + "&people=" + people
      		
      %>
      


      This is the error I get.

      Error Type:
      Microsoft JET Database Engine (0x80040E09)
      Cannot update. Database or object is read-only.
      /rest/placeorder1-1.asp, line 20

      What am I doing wrong?

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

    5. Open source hardware

      Date: 04/10/05 (Open Source)    Keywords: asp, linux

      A partner in IBM's venture capital arm, Juan-Antonio Carballo, says aspects of the open source model are now migrating to hardware. (The picture is from the IEEE workshop where he made his statements.) He wasn't talking about Linux on a chip. Instead he was talking about contracts being written that ...

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

    6. Including files

      Date: 04/11/05 (WebDesign)    Keywords: html, asp

      Alright guys, I got a question for you. I'm working with ASP.NET and trying to convert one of the sites I had to make for the Nursing department at my school from purely HTML to .NET. The way things are set up now is that every file includes the navigation file. I'm wondering how to do this in .NET (C# as the language).

      I've tried using the command, and it will include it fine, but it screws up the links on the page.

      I'm wondering if there's a regular .NET command to include this file.

      Thanks much!
      --Lisa

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

    7. Generating HTTP Errors in IIS

      Date: 04/13/05 (Asp Dot Net)    Keywords: asp, web

      I'm working on developing custom error pages for a client of ours, and I'm working on trying to have the various errors point to different ASP pages that have scripts that email out to tech support that an error occurred on the website. Obviously the only way (that I know of) to test these error pages is to regenerate the errors. Producing a 404 error is easy, but how would I go about reproducing a 503 (Server Unavailable) error or a 500 (Internal Server Error) error? Also, the way I currently have it set up is that the error pages are all in my /Scripts folder and I was wondering if there was a way to be able to grab the site that the person was trying to go to. So for example someone tries to go to www.fake.com/as9daijoi which doesn't exist. The custom error page comes up, and sends out an email to tech support saying that they were TRYING to navigate to www.fake.com/as9daijoi but couldn't. I have it grabbing their IP address, the time, and any referring pages that there were. Any help would greatly be appreciated.

      This is on IIS 5.1 with WinXP SP2, developing in InterDev and using AspMail 4.0 for email.

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

    8. Open source hardware

      Date: 04/10/05 (Open Source)    Keywords: asp, linux

      A partner in IBM's venture capital arm, Juan-Antonio Carballo, says aspects of the open source model are now migrating to hardware. (The picture is from the IEEE workshop where he made his statements.) He wasn't talking about Linux on a chip. Instead he was talking about contracts being written that allow chip makers to see [...]

      Source: http://blogs.zdnet.com/open-source/?p=231

    9. Widget to allow multiple versions of IE to run simultaneously.

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

      I nearly cried when I found this:
      http://www.skyzyx.com/downloads/




      Which implements the fixes as suggested here:
      http://labs.insert-title.com/labs/article795.aspx

      My apologies if this is old news, but I'm all giddy n' such.

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

    10. Macromedia Contribute

      Date: 04/23/05 (Web Development)    Keywords: asp, web

      Does any one have any experience using Contribute 3? I need to convert an ASP site to be editable in Contribute, and I'm wondering how to go about that (and how long it should take for 50 pages). Tips? Advice?

      Thanks.

      x-posted to webdesign

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

    11. Recommend me a paid storage hosting site.

      Date: 04/25/05 (WebDesign)    Keywords: php, mysql, asp, sql, web, hosting

      I just recently register my domain name, and now I'm asking for those that have domains with storage access what hosting company are you using ? I prefer for the hosting company to be in the USA, and if it's not at lease have payment options in USA dollars.

      I would like for the hosting company to have the following for service
      FTP Access
      PHP
      ASP
      CGI-BIN
      MYSQL
      WEB MAIL
      ALLOWS MULTIMEDIA (really important I've been searching around hosting sites,but the ones I'm finding doesn't allow it)
      SUB DOMAIN

      and a good amount of space and bandwidth

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

    12. ListBox and DropDownList...ack!

      Date: 04/25/05 (Asp Dot Net)    Keywords: asp


      Never mind. I forgot about putting the onClick="editClearButton_Click" command in my button code.


      Okay, so this is a really dumb question. Seriously. I should know this.

      I *do* know this.

      But it still doesn't work.

      I've basically got the equivilant of two forms on one page. It's all contained in one form, but each button handles a certain set of controls. Hence the phrasing.

      Each control set has a submit button and a clear button. (I'm trying to get the clear buttons working first, as those are less messy) The first clear button has a ListBox control, and the second clear button has a DropDownList control.

      Each of these controls deals with indicies (indexes? Whatever's plural for index) for selection purposes. So, as one might expect, I want to set the index to the default (the defaults each read "--Please select an exam--" and "--Please select a course--" respectively). Unfortunately, when I reset the SelectedIndex property to the default, nothing happens.


      Script Code Sample (using C#):
      void editClearButton_Click(object sender, EventArgs e)
      {
        editExamAlert.Text = "";
        editExamValidation.Text = "";
        editExamList.SelectedIndex = 0;
      }




      ASP.NET Code Sample:
      

    Edit an Exam

    Please Select the exam you would like to edit.
    --Please Select an Exam-- nu210 Exam 1 nu220 Exam 1 nu235 Exam 1 nu238 Exam 1
    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