Search:

Type: Posts; User: aNubies

Page 1 of 13 1 2 3 4

Search: Search took 0.10 seconds.

  1. Replies
    1
    Views
    743

    Handling Ajax and ActionResult properly

    Hi guys,

    So this is my sequence:

    1. After filling up all the person information >
    2. Clicking the button will trigger my ajax to execute my SendNotification Actionresult >
    3. Upon successful...
  2. Replies
    5
    Views
    1,423

    Re: Get the selected value of @Html.Dropdownlist

    I got it using JavaScript and redirect it to SendNotification. Could anyone give me sample on how to do it using post, so that I know some work around.
  3. Replies
    5
    Views
    1,423

    Re: Get the selected value of @Html.Dropdownlist

    So basically I Have to ActionResult only.

    1. Dashboard (GET)
    2. SendNotification (GET)

    All the functions reside in Dashboard, SendNotification will be triggered only after clicking the...
  4. Replies
    5
    Views
    1,423

    Re: Get the selected value of @Html.Dropdownlist

    Is this the FormCollection you're referring, jm?



    public ActionResult SendNotification(string id, FormCollection ctrl)
    {
    string mailMessage = "";
    ...
  5. Replies
    5
    Views
    1,423

    Get the selected value of @Html.Dropdownlist

    Hi guys,

    This is how I populate my @Html.Dropdownlist:

    Model


    public class BeNotified
    {
    public string Name { get; set; }
  6. Replies
    7
    Views
    1,304

    Re: Entity Framework Related Table

    My bad, didn't include all the error message. But I get it now, I used my 'var' as IOrderQueryable while I re-initialize it as IQueryable and that's the reason it give me cannot implicitly convert...
  7. Replies
    7
    Views
    1,304

    Re: Entity Framework Related Table

    Okay I just did this



    var employees = db.Employees.Include(e => e.Department1).OrderBy(c => c.EmployeeNo);

    // SEARCH ACTION
    if...
  8. Replies
    7
    Views
    1,304

    Re: Entity Framework Related Table

    How to perform my own join query with my relating table in entity, if i may ask?
  9. Replies
    7
    Views
    1,304

    Re: Entity Framework Related Table

    I got it now by using this



    var employees = db.Employees.Include(e => e.Department1)


    And then reference the column name in view
  10. Replies
    7
    Views
    1,304

    [RESOLVED] Entity Framework Related Table

    Hi guys,

    So I created my first entity framework and I have two relating tables (Employee and Department). So I can manage to retrieve all the data from employee table, however; my department...
  11. Re: [Error] Type or namespace name does not exist

    Thanks mate :wave:
  12. [RESOLVED] [Error] Type or namespace name does not exist

    Hi guys,

    This is the complete error message:

    [QUOTE]
    The type or namespace name "Models" does not exist in the namespace email
    The type or namespace name "ApplicantUser" could not be found...
  13. Replies
    4
    Views
    1,024

    Re: Capture Email Reply

    Thank you jm :wave:.
  14. Replies
    4
    Views
    1,024

    Re: Capture Email Reply

    After clicking the link provided to their email message, is it possible to get the email address? so that I can identify the user.
  15. Replies
    4
    Views
    1,024

    [RESOLVED] Capture Email Reply

    Hi guys,

    Basically, I want to send an email with corresponding two buttons (Yes or No button) and one textbox (remark). And then I want to capture which of the two button click by the recipient...
  16. Adding Model Collection To List Without The Use Of Loop.

    Hey Guys,

    My thread title might somewhat confusing, so please bear with me. Below is my code:



    for (int row = 0; row < CoreTable.Rows.Count; row++)
    {
    ...
  17. Re: Sql server 2008 - how to create stored procedure?

    Thank you very much for pointing it out to me. And I tested my code with some additional and it works well.

    Thank's man.
  18. Re: Sql server 2008 - how to create stored procedure?

    So this is my whole code now.



    -- ================================================
    -- Template generated from Template Explorer using:
    -- Create Procedure (New Menu).SQL
    --
    -- Use the...
  19. Re: Sql server 2008 - how to create stored procedure?

    I have this table wherein all the hired applicant will be stored temporarily if the day they hired is not in the given payroll time. So for the users don't needed to check all the applicants and...
  20. Re: Sql server 2008 - how to create stored procedure?

    Is there a way where after inserting one data, I can store the Id or something to a variable so that I know what data I needed to update?
  21. [RESOLVED] Sql server 2008 - how to create stored procedure?

    Hey Guys,

    I don't have any background about stored procedure, so I don't know the syntax and how it works. Basically what I'm trying to do is, I want to insert my data from one database to another...
  22. Replies
    2
    Views
    6,666

    VS 2013 Re: How to downgrade EF 6 to 5?

    I fix it :). For those who will encounter the same problem just add a [Key] annotation to your model variable.
  23. Replies
    2
    Views
    6,666

    VS 2013 Re: How to downgrade EF 6 to 5?

    134049

    Here is the error message.
  24. Replies
    2
    Views
    6,666

    VS 2013 [RESOLVED] How to downgrade EF 6 to 5?

    I have VS 2013, and starting to learn MVC EF. However, an error keeps prompting saying when adding a controller:



    I already added a DbSet in Model and connectionstring with the same name of my...
  25. Replies
    5
    Views
    1,977

    Re: Workaround to remember the form inputs.

    It's been a weeks now since I posted this topic. But I consider what @kfcsmitty suggested and thanks for the insights @shaggy. I gotta dig some information about this local storage thingy.
    ...
  26. Replies
    5
    Views
    1,977

    Workaround to remember the form inputs.

    Hi Guys,

    I don't know where should I post this question, so please moderator and administrator if you want to move this thread on a appropriate one, thank you so much.

    But let's go to my...
  27. Replies
    5
    Views
    11,379

    Re: Crystal Report Not Displaying

    I got it :wave:.

    For the benefit of others who will encounter the same problem.

    Solution:

    1. Make sure that the version of Crystal Report Viewer and Redistributable in your localhost and...
  28. Replies
    5
    Views
    11,379

    Re: Crystal Report Not Displaying

    No errors, it's just the report not displaying.

    These are only the instance that related to Crystal Report that I got.



    Microsoft Report Viewer Redistributable 2008 SP1
    SAP Crystal Reports,...
  29. Replies
    5
    Views
    11,379

    Re: Crystal Report Not Displaying

    Crystal Report Viewer already installed in the server. But still not displaying any report.

    How will I know what CR runtime version installed on my local machine while doing the delopment and what...
  30. Replies
    5
    Views
    11,379

    [RESOLVED] Crystal Report Not Displaying

    After publishing the MVC website to server, the only problem I encounter is that the Crystal Report not displaying. What do I need to install to server to be able the crystal report to display.
  31. Replies
    4
    Views
    1,449

    Re: Unable to login to Active Directory.

    Hello kfcSmitty,

    Yes, this is running on a server only. What does port 389 and 636 have to do with LDAP? Does residing on a server and domain have different configuration?

    And BTW, I have to...
  32. Replies
    4
    Views
    1,449

    Re: Unable to login to Active Directory.

    Does anyone know a solution for this. Thank you in advance.



    using (var ActiveDirectoryConfig = new PrincipalContext(ContextType.Domain, "CORP.ORG"))
    {
    ...
  33. Replies
    4
    Views
    1,449

    Unable to login to Active Directory.

    I have created a website that my login use an active directory as an account access. In my code I specified the default Active Directory that my system will check for account validity.

    However, my...
  34. Re: Adding Events With Dynamic HTML Control

    I got it :wave:



    // NEW BOOK TEXTBOX.
    var NewBookTextbox = document.createElement('input');

    NewBookTextbox.id = "Book";
    NewBookTextbox.name = "Book";
    NewBookTextbox.className =...
  35. [RESOLVED] Adding Events With Dynamic HTML Control

    Good day,

    I was able to make the adding of html textbox control working perfectly.

    So here's my code for adding textboxes.


    var elementCounter = 2;

    // NEW BOOK TEXTBOX.
  36. Replies
    2
    Views
    683

    Re: Batch Crystal Report

    Yes that is the case, if I have 300 data that would be 300 pages.

    That is for the purpose of certificates. So I need to use the template so many times and with different data.
  37. Replies
    2
    Views
    683

    Batch Crystal Report

    Hi Guys,

    Given that I have a DataTable where I reside my data and one CrystalReport.
    So what I'm trying to achieve is that all the data should be populated in a CrystalReport which is just one...
  38. Replies
    14
    Views
    26,523

    Re: JQuery Render Time & HighCharts

    Thank you sapator :).
  39. Replies
    14
    Views
    26,523

    Re: JQuery Render Time & HighCharts

    I want to try the web service instead for a change :). Yeah that was my problem the HTML Button fires first because it is a client side and ASP.Net Button follows, that is why I used the ScripManager...
  40. Replies
    14
    Views
    26,523

    Re: JQuery Render Time & HighCharts

    I found a way :). I used ScripManager.RegisterStartUpScript(), so basically the ASP.Net Button will update the data onto a textbox then it will call the function of a HighChart which is updated data....
Results 1 to 40 of 500
Page 1 of 13 1 2 3 4



Click Here to Expand Forum to Full Width