Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: skitty123
  • Content: Threads
  • Order by date
  1. skitty123

    how to by-pass forms authentication for "Help/info" asp pages

    Hi I have an ASP .net application and I am using Forms authentication. I have some pages that are just "contact information" and "About this application.." etc .. how can I set the web.config so that these pages do not require authentication but teh rest of teh application still does?
  2. skitty123

    session.abandon not working properly

    I am using Foms Authentication in my .NEt application. When the appliction is staretd in a new browser window, my authentication works fine, ie does not allow user to go to any page without first clearing the login screen. However if I login, then logout and then try to access other pages I can...
  3. skitty123

    show message box based on result of query

    I want to show a message box with a message based on a result of a query. how do I do this? Currently I have the message displayed in a Label control on my ASP page, but a pop up message box woudl make more sense. the query checks to see if some records exisr. so here is what I want to do...
  4. skitty123

    why does pointer change over validation controls/summeries?

    I notice the pointer changes to a thin line when I hover the mouse over the validation controls on my ASP web page. Its doesnt bother me, except now, after I added some code to change the pointer to an hourglass .When a user cliks some button pointer chanegs to hourglass and after post back...
  5. skitty123

    pointer, hourglass and back to pointer again?

    I have a fucntion call on the server side the takes 3-4 minutes as its inserting several records in the database. In the mean time users of the asp page get impatient and keep clicking the "submit" button, though I have added a warning message etc, the best solution woudl be to have a hourglass...
  6. skitty123

    how to add a pop up warning on server control button

    I am trying to create a logout button on my application. which ends the users session, I currently have an HTML button with a runat=server since I have it doing the following actions 'onclick': myownclass.unsetUserInfo();//my own function Session.Abandon()...
  7. skitty123

    scheduled DTS fails, runs fine from designer

    I have set up a DTS package to import data from a text file into SQL Server table. Since the text file resides on a different machine on the network, (The Sql Server is local to the machine to which i have mapped the network drive.) I even tried the UNC name of the drive instead of the mapped...
  8. skitty123

    DTS Cannot open data file from ASP

    I have a simple DTS package which executes fine in the SQL server enterprise manager environment but when I call it from an ASP page it fails with the error: ---------------- Step Error Source: Microsoft Data Transformation Services Flat File Rowset Provider Step Error Description:Error opening...
  9. skitty123

    DTS doesnt execute from code ...why?

    trying to execute a DTS package (that loads data into a table), no errors are thrown, .. why does it not do anything? ( I set one global variable , but even if i hard code it into the package and try to run I get the same result: no errros and package is not run) //--------------------------code...
  10. skitty123

    Conditionally hide a cell (<TD>) on asp page

    I have some a series of Hyperlinks on a page <TD class="cssfile" id="link1" noWrap><A class= class="cssfile" href="~/Home/default.aspx" runat="server">Home</A></TD> .. etc I want to hide some of the links on page_load depending on some criteria stored in a database. so I am trying to hide teh...
  11. skitty123

    how to pass global Variable to DTS from ASP .NET

    I want to run a DTS package from an ASP.NEt application and pass a Date variable to the package without which it cannot run can anyone tell me how to achive this? thx
  12. skitty123

    column not being read as Null, causing fail

    I am trying to import data from a .csv file into SQL Server using DTS. the file contains data like this: Name, Price PROD1, 10.50 PROD2, 11.2 ,0 ,0 XYZ, 0 The table I am importing into has the "name" column set as not allowing null so the rows 3 and 4 are causing an error I modified my...
  13. skitty123

    set readOnly property for datagrid column via code

    I have a datagrid with 3 columns, when doing and edit/update I want user to be able to edit only col2 and col3, so I set col1 to readonly Now I have a button which, on click, adds a new row to the dataset that feeds this datagrid. I want to now set the readonly property of col1 to false so hat...
  14. skitty123

    What does &quot;deployment&quot; actuly do?

    I had some basic questions about application deployment: I have a small ASP .NET application in C# that is in development on an XP machine, Uses a sql server 2000 database on the same machine. the web application has dependency on 2 other projects that are part of the same .sln (solution) file...
  15. skitty123

    deploying ASP application

    I have a small ASP .NET application that is in development on an XP system, uses a sql server 2000 database on the same machine. Concurrent users will proabably be 5-6 as it will be an intarnet appication only Management wants to keep the application on the same system instead of putting on a...
  16. skitty123

    do i need a custom control?

    I have a couple of asp .net page which request a user to input a start month and year I want to create drop dopwn boxes for month with value Jan through Dec and for year: 2004, 2005, 2006 ... etc I have never created custom controls ( only user controls) Will crateing a custom control with...
  17. skitty123

    chart data labels overlap

    I have pie charts in my report tahts how product names. sometimes the product names are long so they overlap with other names. is there anyway to avoid this? using Crystal 8.1 (i think) that comes with Visual studio .net 2003 I tried chaneging font size but it seems to have no effect :(
  18. skitty123

    hide/show sections based on params

    I have a details section which is hidden(drilldown ok) When I export the file to a different format I want to "show" this section so that the details get exported also. I was thinking something like if {?Parm1} = "1" then True else False; for the conditional suppression on the...
  19. skitty123

    change chart title dynamicallY?

    I am trying to have the chart display the name of the group it is showing but "@MYGROUPNAME" in the chart title does not seem to help , it shows up as is with the '@' sign how do I make the groupName show up in the title of a chart?
  20. skitty123

    export even drill down sections

    I have created a report which has 3 levels or grouping. when you see the report only the first level of group by is visible, rest are hidden untill you drill down. My code for exporting works fine but when I export to a different file format ( excel/ pdf etc) it only exports the report as you...

Part and Inventory Search

Back
Top