Search results for query: *

  1. manared

    file or filename in db?

    I have a web application (VS 2008, .NET 3.5) that I need to create. There are a bunch of different search criteria (specs of drawings) that users can search for and when they search for the results, a list will come up with all the matching results with all the specs and either one or two files...
  2. manared

    process cannot access file

    I'm getting this error: The process cannot access the file 'C:\Inetpub\Programs\TestQSservice\Reports\Quote.pdf' because it is being used by another process. I'm not sure how to fix it right now. It's erroring on this line: Rep.Export(opt) Here's my code (VS 2008, .NET 3.5) Imports...
  3. manared

    call javascript function after server side code is run

    I'm using VS 2008 and Asp 3.5 with SQL. I have a web application that I've created using master and content pages. I have a header in my master page that can be updated through a javascript funtion. For example, I have a cart page and when the grid is updated, it changes the header like this...
  4. manared

    change master page labels from content page

    I'm using vb.net 2008 and I've created a web application with master and content pages. In the master page i have a header that has some labels in it. These labels will show an item count and a total amount. These numbers will come from a sql database. These labels basically are showing what...
  5. manared

    Report requires further information - CR (logon...;))

    I created a crystal report and added it to my VS2008 web application. I thought I did it the same as all the other reports I've done (this is actually only my 3rd crystal report, so i'm a beginner!), but I keep getting this screen asking for more information. It asks for Server, Database, and...
  6. manared

    Microsoft JScript runtime error: Object doesn't support this property or method

    Addition: I actually do not need the values at all.. All I'm trying to do here is to raise a post back event so I can grab values from the page (server side) and update my database table with them. Do you know another way in javascript to raise a postback event?
  7. manared

    Microsoft JScript runtime error: Object doesn't support this property or method

    I'm using VS 2008 and I'm trying to call a post back from javascript. Here's the line of javascript that isn't working: window["<%= Label1.ClientID %>"].AjaxRequest("<%= Label1.UniqueID %>", "MyArgument") I keep getting this error: Microsoft JScript runtime error: Object doesn't support...
  8. manared

    SQL statement with several different tables

    Hi, I'm using VS 2008 and SQL. I have an application that uses several different tables. In my main table, I have the main/basic fields that I need. THere are several other tables that have detail information in them. So in my main table I create ONE entry that has an id. In the detail...
  9. manared

    Set numeric textbox value in javascript

    My main question is: How do I set the value/text of a numerica text box in javascript code? I'm using Visual Studio 2008 with Q3. I have a master page with numerous content pages. On one page i have a few numeric textboxes. I have been able to grab the values of the textboxes and do any...
  10. manared

    Crystal Report Errors

    I'm using Visual Studio 2008 and i'm trying to create a report using Crystal Reports. I've created a report using Crystal Reports product version 11.5.0.313. Here's my asp code: <%@ Page Language="VB" AutoEventWireup="false" CodeFile="Default.aspx.vb" Inherits="_Default" %> <%@ Register...
  11. manared

    RadGrid -- switch rows and columns

    I have a RadGrid and I want to bind it to a datasource, but I want to do it differently than normal. Normally, rows are added for every entry into a table in the database. But, I have a table with a bunch of expense items in it (This is a set amount of items and will not change or have items...
  12. manared

    PropertiesToLoad in directorySearcher (for active directory)

    I'm using the directorySearcher in my vb.net 2005 for getting info from active directory. My question is, how do I know what properties I can add? For the PropertiesToLoad, I'm not sure what I can and can't use. One thing I want right now for example, is the social security number. Or if there...
  13. manared

    doing math operations during runtime

    I have to create an Expense Report using vb.net 2005 in a web app. I'm not sure how I want to start it out and lay out the program. Basically, I want something that looks like a table with dats on top and items along the left side and totals along the right side. In the middle the user has to...
  14. manared

    pass variables through input button to another page

    I'm not sure if I understand how I can use this. I have an asp:dropdownlist (or a text box) that the user picks to select a value. Then I have an html input button that calls the other aspx page. So the value I'm grabbing isn't in html, it's an asp item. Will this still work? Do you know...
  15. manared

    pass variables through input button to another page

    Thanks!! Am I able to pass values such as txtName.text or ddlSpecs.SelectedValue at all through this?:confused:
  16. manared

    pass variables through input button to another page

    I have a 2005 web application with a button (Input) that opens another aspx page. I was wondering if there is a way that I can send variables to the second page using an input button. Here's my source code for the button: <INPUT Type="button" OnClick="window.open('Specs.aspx', 'win1'...
  17. manared

    populate ddl with two fields

    I think I'm having a brain fart. I'm using vb.net. I have a drop down list and I want to populate it with a name. In my SQL table, I have one field that is FirstName and another field that's LastName. I want to show the two names together (Ex. John Smith) in the drop down list. I want the...
  18. manared

    Find user's IP address in project

    I am creating an http module in a project that is referenced and called by a plain web application (in vb.net). I want to find out what each user's IP address is that opens the email that I am sending them. There is an id in the email that calls the web application to run and that's how...
  19. manared

    work around for null or no data when reading from sql table

    haha.... oops!! yup, wrong forrum.. I'll repost it in the other one. And I'm using vb.net 2005 with SQL 2005. I've gotten one error saying that it can't read because there is no data present and one error saying that it can't read a null value.
  20. manared

    work around for null or no data when reading from sql table

    Quick question: When I'm reading data from a table in SQL, I want to bring back all the information and show it in my aspx page. But, if there is no data or if it's null, it throws an error. What do you think would be the easiest way to get around this? There is a LOT of fields to go through...
Back
Top