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 Wanet Telecoms Ltd on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by Komil13

  1. Komil13

    Adding WebDav server to windows application

    Well, my application will be an web application. I would like to encapsulate it to be kind of like an embedded application inside a windows application. Basically, the client machine will not have a web server on it and will not have access to the internet. Therefore, the web application and...
  2. Komil13

    Adding WebDav server to windows application

    Hey Guys, I've got a asp.net web application. Its a simple application which connects to a SQL Server 2005 Mobile database. I would now like to write a windows application which will wrap this asp.net web application and allow it to be executed normally. I was thinking of using the in-build...
  3. Komil13

    SessionState & ASP.NET

    mode is set to SQLServer KP
  4. Komil13

    SessionState & ASP.NET

    Hi Guys, I have a website that is using Session State to store all the session info. Our default.aspx page (homepage) does not have any code that hits the database. However, we discovered that when the SQL Server is not accessable, the site doesn't even come up. We traced it to the...
  5. Komil13

    Storing Session State in SQL Server

    I'll try to explain my situtation as best as I can. I am working on two different web applications. One is the back-end and the other is the front-end of a e-commerce site. The front-end is used by our customers to order products from us and the back-end is used by our employees for managing...
  6. Komil13

    Generating GUIDs using C# ...

    Hi guys, Is there any way to generate GUIDs using C#. I am building a web application that I would like to use it for. Thanks for all your help.
  7. Komil13

    Image Webservice issue

    Hey guys, Let me explain the setup of our servers first, We have a webserver sitting outside of the firewall, which runs the company site. We also have an internal webserver for our intranet. We also have a SQL server which, as guessed, sits inside our firewall. There is also a internal...
  8. Komil13

    Passing an array to a custom dll

    I was able to figure out the bottleneck. At first, it seemed that it was the array, but after pulling every line apart in the dll, I figured out that it wasn't the array after all. The problem was a query in the dll that was querying a table of 750,000+ records. Currently, I am working on...
  9. Komil13

    Passing an array to a custom dll

    Hey guys, I have created a custom dll that accepts a 2-dimensional string array. The array holds all the product info for an online order form. The dll processes through that array and returns the cheapest freight carrier and the price. The problem is that this array takes about 1-2 seconds...
  10. Komil13

    Disabling Datagrid Add button

    Hey guys, I am trying to disable a 'Add' button in the datagrid so that it can only be clicked on once. Any ideas how to implement that? So far, I've tried using the ItemCommand event of the datagrid, but that does not work. Thanks for your help.
  11. Komil13

    Adding controls to Repeater Control dynamically

    I figured that adding code would help. Here is the code from the aspx page: <asp:Repeater ID="rptCategories" runat="server" > <itemtemplate> <table border="0" width="730"> <tr><td class="box2"><span class="regtext"><%# DataBinder.Eval(Container.DataItem, "CategoryID_PK") %> - <%#...
  12. Komil13

    Adding controls to Repeater Control dynamically

    Hello I have a repeater control that is getting results from the database. Now, I would like to dynamically create another repeater control inside the <itemtemplate>. I have placed a PlaceHolder control in the <itemtemplate> tag. I then create a repeater object dynamically, collect...
  13. Komil13

    ASP.NET & Active Directory

    Can you guys please point me to a good tutorial for using Active Directory with ASP.NET (VB.NET). I would like to use the active directory to authenticate the user. Thanks
  14. Komil13

    vb.net datetime

    hi, i would like to search an access database using the date/time field in database. In my app, i am using a datetime variable. My question is how would i use a datetime value from my app to search the access database's date/time field??
  15. Komil13

    sed &amp; variable

    Thanks Jad ... that worked just perfectly ...

Part and Inventory Search

Back
Top