Search

You searched for the word(s): userid:879142

Matching Posts

  • ListView Control and Object DataSource

    I woudl like to bind an entity framework query into a list view and be able to use a pager for the bonded data. I create a list view with SQL data sorce in order to get the list view with al templates and pager (pager with a numeric links and also next,back buttons) , then i delete the SQL data sorce and bind the ListView to my entityframe work model query in the code behide using this code: protected void Page_Load(object sender, EventArgs e) { using (TestEntities model = new TestEntities ()) {
    Posted to Web Forms (Forum) by Yaniv.net on 12/26/2009
  • Re: JavaScript and asp.net

    Editor like FCK and Tiny are not what i am looking for, I need editor that allows you to drag the text blocks freely exactly like in VistaPrint.com or iPrint.com Thanks
    Posted to Web Forms (Forum) by Yaniv.net on 10/24/2009
  • JavaScript and asp.net

    Hi, I am working on a new web application that enable the user to add a text elements on the screen, drag them, change font color and style of each text block and then I would like to send all the information to the server (and create an image file with all of the text blocks on it) most of the user actions are being made in the client side, my questions are: 1. do I need to use the asp.net script manager in my page ? 2. should I create a JavaScript object/class for the text blocks that contain all
    Posted to Web Forms (Forum) by Yaniv.net on 10/21/2009
  • Re: Send data to another page

    What is not good in the approach i have mentioned ? surround each record with a form element and send the data using post ? it was the common and best way for this senario in classic ASP, i can not see any better way in asp.net ... Session, querystring, database and server.transfer was also available in classic asp, but the common wat was form element... am i wrong ?
    Posted to Web Forms (Forum) by Yaniv.net on 10/18/2009
  • Send data to another page

    I would like to get records from database and display them (in some tabular structure) in my web page. For each record i would like to put a button that will send few parameters of the record to another page. In classic ASP, i was used to surround each record in my page with a form tag (with a different id), set the action method (get or post) and add few hidden fields with the data that i would like to send to the next page and a submit button, How should i implement this with ASP.NET ?
    Posted to Web Forms (Forum) by Yaniv.net on 10/12/2009
  • Re: Send data to another page

    As for the MSDN article you gave me, i can still use the same way i did with classic ASP, when each record is surrounded by a her own form with method=post and hidden fields. But is it the common way in ASP.NET ? Thanks
    Posted to Web Forms (Forum) by Yaniv.net on 10/12/2009
  • Re: Send data to another page

    Yes, i know that there are many ways to send parameters from one page to another, but in my specific scenario (which supposed to be a very common scenario) i would like to know what is the best and common way to implement) i do not want the parameters to be visible in the url, which means querystring is not an option. Thanks
    Posted to Web Forms (Forum) by Yaniv.net on 10/12/2009
  • Problem with dataPager

    I would like to build an hierarchical forum in asp.net, I am using LINQ to EF, ListView and DataPager. I got all records from my db into a list in a single query, then I sorted the List (took all the root records and recursively sort their children), now I have it all in one sorted list. I bind this list to the ListView everything works great except few problems: I set the Pager row number to 10, because all of the records are stored in one list the list view "cut" the "tree"
    Posted to Data Presentation Controls (Forum) by Yaniv.net on 9/16/2009
  • Hierarchical forum with EF

    I would like to build a cacading forum , i would like to do it as efficiently as possible. I thought about retrieving all the recoreds in one query, sort it in my code and then bind it to a control in my page. The problem is that i would also like to use "smart" data pager that will retrieve only 10 records per page but would like to get the 10 records with all their posterities, Does anyone have an idea how to do that ? I also prefer to implement it using Entity Framework. Thanks
    Posted to Web Forms (Forum) by Yaniv.net on 9/14/2009
  • Re: asp.net 3 Tier with Entity Framwork

    Well, I was looking for a place where I can send all my queries to be executed into a try/catch block instead of write try/catch block over and over again in each function, I also want to handle a logging mechanism. In the "GetOrders" method I also wanted to make some validation to the user input before execute the query. I read a lot and couldn't find a solution for all of that, and yes, you right, I am also looking for creating as generic as possible methods, isn't the right way
    Posted to Architecture (Forum) by Yaniv.net on 9/13/2009
Page 1 of 6 (59 items) 1 2 3 4 5 Next > ... Last »