Search:

Type: Posts; User: ERUM

Page 1 of 13 1 2 3 4

Search: Search took 0.07 seconds.

  1. Replies
    0
    Views
    1,567

    problem in installation SDK

    i have windows sdk .and while installation for one compmenet in Extras folder i m getting an error

    please help any one
  2. Replies
    3
    Views
    1,408

    Re: exception handlng in mvc

    please suggets code in mvc razor
  3. Replies
    3
    Views
    1,408

    exception handlng in mvc

    can any one suggest me how to do exception handling in MVC in generalize level. means any exception occur and it redirect page to one page only..
  4. separatly treat checkbox in two different html table

    suppose if i have two html table table1 and table2
    and each have rows with css class "case" .. each html have header with selectall checkboxes .so if i check selectall checkbox of table1 and i want...
  5. Thread: add menu screen

    by ERUM
    Replies
    1
    Views
    974

    add menu screen

    an any one suggest me what would be standard Screen in MVC to add menu in database .. ??
  6. Replies
    0
    Views
    1,333

    opening boot strap popup using web grid

    i have a webgrid in my page shown below


    @grid.GetHtml(



    tableStyle: "table", // applying style on grid
  7. Replies
    1
    Views
    1,246

    aly out and cshtml

    i m following http://www.codeproject.com/Articles/1012972/Step-by-Step-Using-Bootstrap-with-ASP-NET-MVC?msg=5146287#xx5146287xx

    for applying bootstrap in my project ..Does nay one know how to put...
  8. Thread: MVC with SSRS

    by ERUM
    Replies
    2
    Views
    1,819

    MVC with SSRS

    Hi to every one

    can any one tell me how to kick start simple with MVC and SSRS ..I am quite new to both ..also gooogling for that but did not find any thing simpel enough ..i need to make simple...
  9. Replies
    2
    Views
    3,578

    Re: how to open boot starp modal in edit mode

    yes same
  10. Replies
    2
    Views
    3,578

    how to open boot starp modal in edit mode

    ..I just want to open modal popup in two different way either Add mode or Edit mode ..so is there any way to figure out either modal popup is open in Add or edit mode .. can we pass extra arugumnet...
  11. Thread: view model

    by ERUM
    Replies
    1
    Views
    540

    view model

    let me tell problem work


    I have two table class and Student in database ..Student holds all student and class holds all class from Grade I to Grade 10 ..now partial View open on ADD button...
  12. Replies
    2
    Views
    2,091

    VS 2012 Re: MVC and autocomplete textbox

    yes not showing
  13. Replies
    0
    Views
    1,154

    mvc and boot strap

    Hello to all


    I m new to boot strap and I m integrating MVC sample Application with boot strap ..now let me explain my problem first .I have certain menus like Home ,search user etc etc .....
  14. Replies
    2
    Views
    2,091

    VS 2012 MVC and autocomplete textbox

    i m working autocomplete in textbox .for examle if i type e in textbox it should displayed all username start with 'e' from datatbase i write following code ..but its not working fine ..

    @model...
  15. Replies
    0
    Views
    1,284

    EDIT and delet from one view

    i have following view its working fine till it display code ..but I want when I click on edit button in tabular data it should display selected data in entry section ..like user name in name...
  16. Replies
    2
    Views
    1,026

    convert linq to asp.net synatx

    can any one convert following statement from linq to ado.net framework


    var empList = ds.Tables["Customer"].AsEnumerable().Select(dataRow => new Customer{
    AuthorId =...
  17. Thread: iud and view

    by ERUM
    Replies
    0
    Views
    834

    iud and view

    can any one suggest me a link where Insert update delete can be done by one view only
  18. Replies
    0
    Views
    997

    view name of each action in controller

    i have class homecontroller in mvc4 application and have certain action methods like index ,index1 ..Now I need to ask should I need to have same name of view when adding view of that particular...
  19. Thread: SP and MVc

    by ERUM
    Replies
    4
    Views
    1,971

    Re: SP and MVc

    HOLD down please !! Let me be specific about my question !!


    Accessing data in MVC can be done by following ways !! RIGHT ?????? (correct me if i m wrong )

    - LINQ to SQL
    - Entity...
  20. Thread: SP and MVc

    by ERUM
    Replies
    4
    Views
    1,971

    SP and MVc

    Can any one suggest me to access db from MVC WITHOUT Entity framework..I need tutorial ..
  21. Replies
    5
    Views
    2,353

    Re: joins or sub query in mvc

    thanks for all

    but one more thing ..what if I need column from both tables or put in this way is that I need columns from usr table..right now it will return data from inbox only



    var...
  22. Replies
    1
    Views
    1,273

    Re: cookies values in mvc

    if (Request.Cookies[FormsAuthentication.FormsCookieName] != null)
    {
    string username =...
  23. Replies
    1
    Views
    1,273

    [RESOLVED] cookies values in mvc

    can any one help me how to get values stored in cookies using following

    FormsAuthentication.SetAuthCookie(userr.UserName, false);
  24. Replies
    1
    Views
    916

    [RESOLVED] how to add new model class

    when I added entityfarme work model in mvc Application ..so ultimately it added respected model classes for each table in database .and it added commented line in each class like that





    //...
  25. Replies
    2
    Views
    799

    [RESOLVED] records are not showing

    I am facing a problem is that i have one record in db ..but not showing when i run
    MVC aplplication ..though i update model from DB and validate too ..I have simple one table in db ..please let...
  26. Replies
    5
    Views
    2,353

    Re: joins or sub query in mvc

    thanks jmcilhinney for ur reply ..I got some how ur reply ..but can u write please small chunk of code ..
  27. Replies
    1
    Views
    738

    display customer name in drop down list

    i have two controller customer and order in mvc Application ..I wnat to show customer in drop down list in order controller when click on order create ..or click on following url...
  28. Replies
    5
    Views
    2,353

    Re: joins or sub query in mvc

    i used following code for return all customer name from customer table by joining order table where customerid exist in order table

    public ActionResult Index()
    {
    var orders =...
  29. Replies
    5
    Views
    2,353

    joins or sub query in mvc

    I have table order in database which have following fields where order id is autogenerated

    public int orderid { get; set; }
    public int customerid { get; set; }
    public...
  30. Replies
    0
    Views
    1,942

    [RESOLVED] how to get data from 2 tables

    I have just one tables in database and three stored procedure (IUD)..and i m using EF for db integration MVC 4 ..as soon as i insert data in db ..it just display as it as (call it select * from...
  31. Replies
    1
    Views
    909

    Re: compatible data type

    i put it bit in db and working fine now
  32. Replies
    1
    Views
    909

    compatible data type

    i have scenario that i need to add active customers (in the form of check box) in database ..what datatype should i have in database in crospondence ..i have bool in application .. Please note that...
  33. Replies
    0
    Views
    746

    [RESOLVED] run time error in mvc 4

    I am getti Invalid object name 'dbo.CustomerTBLs'.
    Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information...
  34. Replies
    3
    Views
    1,673

    Re: how to update View in MVC 4

    well i delete and then re-add model.edmx.but not getting add-on field i.e Active on screen..neither found on display ,add,delete etc ect ..apart from that do u think if i added field in db ..I...
  35. Replies
    3
    Views
    1,673

    Re: how to update View in MVC 4

    Let me refershing an error screen ..and share on this forum

    Error 1 Error 2019: Member Mapping specified is not valid. The type...
  36. Replies
    3
    Views
    1,673

    how to update View in MVC 4

    Hi to every one ,

    I have started small ASP.net MVC 4 application(using EF Model) ..and and for simplicity purpose i added few fields ..customer name ,Mobile,Address and ofcourse id as auto...
  37. Replies
    1
    Views
    2,546

    bootstrap and javascript

    I am new to bootstrap framework..I need just small loader WITH JAVASCRIPT ..Just small loader calling with javascript.any help ??
  38. Replies
    0
    Views
    1,196

    Error While adding Dll

    I m working in MVC 4 ..and after adding dataannovation dll i m getting an error in global .asx. on following lines

    RegisterRoutes(RouteTable.Routes);
    ...
  39. Replies
    2
    Views
    1,496

    [RESOLVED] MVC 4 validation

    I need to put validation on field that is already in MVC 4 project.but when i put validation it gives error
    The model backing the 'StudentDBContext' context has changed since the database was...
  40. Replies
    0
    Views
    518

    URL changed in IE and chrome

    I am working on small application ..where i need to create report in excel .on prview button it open URL

    http://mis-srv/Report/report/act-mis-demographic-mis.asp in IE and chrome but it should ...
Results 1 to 40 of 500
Page 1 of 13 1 2 3 4



Click Here to Expand Forum to Full Width