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 SkipVought 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: *

  1. RakhiKalra

    Self reference table

    Hi , I have the following structure: Item table ---------- ItemId ItemName Item Transaction Table ---------------------- TransactionId GiverItemId SenderItemId the data is somewhat like this: Item table __________ 1 abc 2 xyz 3 pnr 4 rew 5 dds 6 djs 7 dsf Item Transaction table...
  2. RakhiKalra

    Query related to #include virtual

    Sheco, I wont be able to check these settings on the server cause i dont have rights to do the same. Please let me know how to mark a folder as web app roots. Thanks and Regards, Rakhi Rakhi
  3. RakhiKalra

    Query related to #include virtual

    Sorry i missed the error in second para the error is: Active Server Pages, ASP 0126 (0x80004005) The include file '/includes/header.inc' was not found. /preview/index.asp, line 1 Rakhi
  4. RakhiKalra

    Query related to #include virtual

    I have downloaded an entire ASP site in which I am supposed to make changes. There are many folders in the Main folder, which consists of include files. For eg Main folder name is "Preview" which is kept on C:\inetpub\wwwroot folder. Now the preview folder has many folders like...
  5. RakhiKalra

    Combobox databind

    I guess filling the combo with values from db is pretty simple. No matter which platform u r from. i am putting one example here... i hope it wud help u in aspx page: <asp:DropDownList Runat="server" ID="cboPageTitle" DataTextField="PM_Name" DataValueField="PM_ID" /> In code behind: Private...
  6. RakhiKalra

    Configuration Error when trying to view in browser

    pls copy and paste the error u r getting. Rakhi
  7. RakhiKalra

    Problem in rendering .js file in Netscape

    tviman, I have already tried this- <script src="commonFunctions.js" type="text/javascript"></script>. but no avail. TrimString is a function defined in the CommonFunctions.js Rakhi
  8. RakhiKalra

    Problem in rendering .js file in Netscape

    Hi, I have made a form on which some validation functions are present in a .js file which is included in my form page as follows: <script language="javascript" src="commonFunctions.js"></script> The form works fine in IE but as i see the page on Netscape, the error comes : TrimString is not...
  9. RakhiKalra

    Problem in deleting file

    tried this also... but dint work :( Rakhi
  10. RakhiKalra

    Problem in deleting file

    Yes i have checked the rights... i have given all rights to IUSR account. but still its not working. Rakhi
  11. RakhiKalra

    Problem in deleting file

    Hi, I have a requierment of deleting a file. I am, writing the following code. when this code gets executed, the server processing starts and end with the servertimeout. The code is as follows dim strFullPath strFullPath = "c:\inetpub\wwwroot\mywebsite\uploadedfiles\myfile.txt" dim...
  12. RakhiKalra

    finding using Regex.pls help

    Hi, I am building a facility to search site contents utility which searches the specified text on the other pages of the same site and gives the list of all pages where it has found the search text. the search is being done properly.but there is one case in which i am getting an error, when i...
  13. RakhiKalra

    I am not able to attach debugger to any web application

    Hi, I am using Visual studio .Net at windows 2000 professional.I am not able to attach debugger to any web application.when i attach aspnet_wp, it doesnt give me any error but page doesnt stop at any break point.I tried on the other applications also but no avail. earlier all was working fine...
  14. RakhiKalra

    Using Style Sheets against components in ASP.NET web forms ?

    style sheet works well with all controls. all the things u need to do is make a css file,create various class within it.and then use those classes in various controls(labels,textboxes etc.) make sure that u have used classes in control declarations. Rakhi
  15. RakhiKalra

    Request.Form doesn't work in asp.net like in classic

    yeah.i misunderstood the things.. well u can easily do redirection to other page also.for that u need to set the following things: on the page write the following javascript code and attach it with the button click on which u want to redirect the page: function redirect() {...
  16. RakhiKalra

    Request.Form doesn't work in asp.net like in classic

    In ASP.Net u can access the text box as well as other controls just by taking there name(not by request.form etc). Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load Response.Write(txtCustomer.Value) End Sub Rakhi
  17. RakhiKalra

    Dynamic table

    JDAEMS, its better u use DataGrid instead of repeater for having checkbox in front of each group. Take a data grid,make as many columns as u want.the column in which u want checkboxes, make it as template column,add a checkbox into it. let me know if u want me to send the code to implement it...
  18. RakhiKalra

    Dynamic table

    its very easy to do.ASP.Net provides many controls to provide this functionality like:DataGrid,DataList,Repeater. as far as ur requirements 'Repeater' will the best choice.Do the following to implement the things. 1.in the aspx page include a repeater control: <asp:Repeater Runat="server"...
  19. RakhiKalra

    Setting Page Expired

    Hi, I have the similar thing to b implemented.All the pages of the application are supposed to b expired.i had written the following code in global.asax. protected void Application_BeginRequest(Object sender, EventArgs e) { // Fires at the beginning of each request //this help you out...
  20. RakhiKalra

    DataGrid - some columns editable when editing / some read only ?

    Hi, just try this to solve this problem. in the aspx page make the columns as Template columns for which u want editing allowed and let others coumns as bound columns. Rakhi Kalra

Part and Inventory Search

Back
Top