Search:

Type: Posts; User: hoobas20

Page 1 of 5 1 2 3 4

Search: Search took 0.02 seconds.

  1. VS 2010 How to integrate ASP.NET Application to Sharepoint 2010

    Hello! Do you have guys idea on how to integrate my asp.net application to sharepoint 2010? I have read lots of articles about this but none of them gives me clear solution. Thanks.
  2. Replies
    2
    Views
    1,484

    VS 2010 ASP.NET TypeAhead

    Hello, I have a million look-up record and i want to fetch this in asp.net using typeahead function, is there a way to do that? thanks
  3. Replies
    3
    Views
    1,168

    VS 2010 Record Locking in ASP.NET

    Hello Guys! Does record locking (Pessimistic and Optimistic Locking) is applicable in ASP.NET application? If so, What is the pros and cons on doing this?
  4. Replies
    2
    Views
    751

    Re: Microsoft Excel functions to .NET

    Thanks man!
  5. Replies
    2
    Views
    751

    Microsoft Excel functions to .NET

    Hello! I don't know if its the right place to post this question but anyhow, Is there a component in .NET 4.0 or some downloadable component that has excel functions? I'll be writing web application...
  6. Replies
    6
    Views
    2,426

    VS 2010 Re: Windows Authentication - Session Time-out

    I already tried that solution. I set my timeout to 10 secs but nothing happened. I am using Windows Authentication.
  7. Replies
    6
    Views
    2,426

    VS 2010 Re: Windows Authentication - Session Time-out

    In what event can capture if session timeout is raised?
  8. Replies
    6
    Views
    2,426

    VS 2010 Windows Authentication - Session Time-out

    Hello, Does Session Time - out is applicable ing Windows authentication?
    If so, in what event can i capture this? Thanks.
  9. Replies
    5
    Views
    1,705

    VS 2010 Re: one to many relationship data entry

    Hello! Here's my situation, I have a page that handles Customer - Orders.


    Customers

    CustomerID int identity
    CustomerName varchar(200)

    Orders:
    OrderID int identity
  10. Replies
    5
    Views
    1,705

    VS 2010 Re: one to many relationship data entry

    Nope, I want to make data entry for the design. Say for example customer-orders table , my customerID is int identity. i want to perform new entry, Im confused on how to do it.
  11. Replies
    5
    Views
    1,705

    VS 2010 one to many relationship data entry

    Hello guys, Can you help me on how to implement one to many relationship data entry? My primary keys is based on database identity. thanks. :)
  12. Replies
    1
    Views
    562

    VS 2008 how to make my page secure

    Hello guys! i have a single page that needs to be secure (https) , my problem is i dont know how to do it. Can you give me walkthrough on how to do this? thanks..
  13. Replies
    3
    Views
    1,818

    VS 2010 ASP.NET 4.0 Free web hosting

    Hello, Do you guys know any free web hosting site for asp.net 4.0? Sorry for posting it here, i dont know if this is the right place to ask for it. thanks.
  14. Replies
    6
    Views
    2,985

    VS 2010 Re: Treeview in Masterpage

    I guess its not, because I'm navigating across pages. not postback. :(
  15. Replies
    6
    Views
    2,985

    VS 2010 Re: Treeview in Masterpage

    Since the treeview is inside the masterpage, the treeview viewstate will not save after page navigation. All I want to obtain is to re-select the selectednode in previous page.

    Here's my code on...
  16. Replies
    6
    Views
    2,985

    VS 2010 Treeview in Masterpage

    Hello guys!

    I've done my research about how will i save the selectednode in treeview and scrollbar state after page navigation but i can't find any solution. Is there a way or alternative way on...
  17. Replies
    3
    Views
    2,334

    VS 2010 Treeview SelectedNode

    Hi Guys!

    I''m having a problem on how will I select the node from a treeview after navigation to a page. My treeview is in masterpage and I'm done populating it using recursion. I don't use...
  18. Replies
    4
    Views
    811

    VS 2010 Concurrent User Update

    Hello Guys,

    I'm having problem on how will i restrict the user to edit certain records if it is being used by another user.

    Scenario :

    Person A currently editing Customers table having...
  19. Replies
    1
    Views
    622

    VS 2005 Datalist inside datalist

    Hi guys! Is it possible for asp.net 2.0 to place datalist inside datalist? I have a table and i want to display in page in this manner :


    Table
    74437


    ASP.NET page
    74438
  20. Replies
    3
    Views
    1,013

    VS 2005 dropdownlist inside gridview control

    Hello, I just want to ask on how will i going to get the selectedvalue of my dropdownlist "qty" inside a gridview control. And multiply that value on bound filed "itemvalue" and place the product on...
  21. Replies
    1
    Views
    451

    VS 2005 Flash and ASP.NET

    Guys, I'm stuck on this, I have 2 textbox made in flash, i POST those values in my post.aspx page. Now, I dont know how does flash get some values from my post.aspx page.
    here's my code behind of my...
  22. Replies
    1
    Views
    859

    VS 2005 ASP.NET and Flash

    Hello ! I am using C#.NET, MSSQL, and asp.net. Now, my problem is I have 2 textboxes (i.e, Username and password field) and button submit that are created in flash, All I want is to invoked my class...
  23. VS 2005 Re: ItemDataBound event unreachable

    Thanks mendhak for response.. I made a mistake with my datasource query in my print page.. now its working fine already.. Thanks thanks again.
  24. VS 2005 Re: ItemDataBound event unreachable

    When Print button is clicked a new window will pop out, other fields generates its contents except for the repeater.
  25. VS 2005 [Resolved]ItemDataBound event unreachable

    Hello! I'm using repeater control this way :


    <asp:Repeater ID="Repeater1" runat="server" OnItemDataBound ="Repeater1_ItemDataBound" DataSourceID="SqlDataSource4">
    ...
  26. Re: [RESOLVED]Oracle 10g : To_date function does not recognize

    Thanks for info!
    I revised my query to this :

    "SELECT * FROM L_CBA A INNER JOIN L_BRANDS B ON A.BRAND_CODE=B.BRAND_CODE WHERE B.ACTIVE='Active' AND A.BRAND_CODE='" & Brand_Code & "' AND...
  27. Replies
    3
    Views
    2,314

    VS 2005 Re: Force prompt of windows authentication

    My aim is to logged-in in different user accounts to test my web app if the roles are working.. currently I am developing the system and it is annoying to logged off and logged in in different...
  28. Replies
    3
    Views
    2,314

    VS 2005 Force prompt of windows authentication

    Hello guys! I used asp.net, vb.net 2.0 and oracle 10g in my web application. I also implement windows authentication . My problem is , I want to force the browser to prompt for authentication...
  29. Re: Oracle 10g : To_date function does not recognize

    Guys! I got the solution!

    "SELECT * FROM L_CBA WHERE BRANCH_JDE_NO in ('" & branches & "') AND to_char(created, 'MM/DD/YYYY') <= '" & Format(referenceDate, "MM/dd/yyyy") & "' order by YEAR...
  30. [RESOLVED]Oracle 10g : To_date function does not recognize

    Hello ! I am new in oracle database. I just want to know why is that my code does not generate values. Here it is :


    templateTable = CreateDataTable("SELECT * FROM L_CBA WHERE BRANCH_JDE_NO in...
  31. How to import .dmp file into oracle database 10g

    Hello! I am new in Oracle database. I just wonder on how to import my .dmp file into my recently installed oracleXE 10g.

    I already done this syntax on my command prompt

    imp admin/password...
  32. Replies
    4
    Views
    744

    VS 2005 Re: How to display new line?

    Thanks for the reply. I tried looking on how oracle represents new line in database but unfortunately I didn't see any "\n" or "\r" in the database.. Does oracle have different representation for new...
  33. Replies
    4
    Views
    744

    VS 2005 How to display new line?

    Hello guys! I am new in ASP.NET and Oracle database.. I just wonder on how to display new line from browser? I use multi-line textbox control to place all comments of the user. The user wants to see...
  34. VS 2005 How to implement log out button in ASP.NET in windows authentication?

    Hi guys! I am wondering how to implement log out command in web application having windows application.. I'm using oracle database , vb.net 2005

    Thanks..
  35. Replies
    1
    Views
    376

    2.0 How to updoad file in SQL2005 database

    Hello, I'm using C#.NET and SQL server 2005. my question is, how can I upload a file in the database? Thanks.
  36. Thread: c# and excel

    by hoobas20
    Replies
    0
    Views
    528

    c# and excel

    Is there a way to assign a column name header based on a row in a table..

    I use oledb to connect in my excel file and put all values in a dataset.. The thing is, the excel file is not in correct...
  37. Replies
    5
    Views
    607

    Re: Excel saving restrictions

    Invalid input let say :

    1. Time format should not exceed to some values.
    2. Detection if theres an empty field that supposedly filled.

    Thanks
  38. Replies
    5
    Views
    607

    Re: Excel saving restrictions

    My bad, I want to restrict the user from saving the file in excel whenever they fill invalid inputs inside the worksheet. thanks.
  39. Replies
    5
    Views
    607

    Excel saving restrictions

    How can I prevent the user from saving an excel file if there's an invalid input from the content of the file. Thanks
  40. Replies
    1
    Views
    599

    [2.0] How to consolidate excel files

    Is it possible in c#.net to consolidate different excel files? Say for example, I'll just going to browse 5 excel files and i want to place all of its content into single file only. Thanks!
Results 1 to 40 of 169
Page 1 of 5 1 2 3 4



Click Here to Expand Forum to Full Width