Search

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

Matching Posts

  • problem with asp.net development server

    if i use firefox (3.5) as my default browser when using the built in development web server, I lose all my CSS, yet in IE its fine. Has anyone else experienced anything like this ? Is it a known issue ? or is there something im missing ?
    Posted to Visual Studio 2008 (Forum) by misuk11 on 11/20/2009
  • The specified module could not be found

    Ive created a web app with an admin section controlled by a usrename/password. After entering the username & password, im taken to the main page, but it displays this error The specified module could not be found ive never seen this before, can anyone tell me how i can find out what the module is ?
    Posted to Getting Started (Forum) by misuk11 on 11/7/2009
  • Re: The specified module could not be found

    this is the master page <%@ Master Language="C#" AutoEventWireup="true" CodeBehind="OfficeMaster.master.cs" Inherits="EBSOnline.OfficeMaster" %> <%@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org
    Posted to Getting Started (Forum) by misuk11 on 11/7/2009
  • Re: The specified module could not be found

    yeah I do have that dll in the bin folder. Ive built dozens of sites like this, all with similare structure, but never come across this problem before. It would help if the module in question was identified somewhere. I have this in my web.config <system.web> <trace enabled="true" requestLimit="20" pageOutput="true" localOnly="true" /> </system.web> when I trype trace.axd in the url bar, nothing happens, how can i get the trace any other way
    Posted to Getting Started (Forum) by misuk11 on 11/7/2009
  • asp:Literal problem

    I have a literal control on my page that displays text from a database. The literal is placed inside a div with a fixed width. When the page is displayed, the contents of the literal are displayed right the way across the whole width of the page and not inside the fixed width div <div id="profile_narrative"> <h1><asp:Label ID="LabelBandTitle" runat="server" Text="Label"></asp:Label></h1> <p><asp:Literal ID="LiteralSynopsis"
    Posted to Client Side Web Development (Forum) by misuk11 on 11/5/2009
  • Re: asp:Literal problem

    I tried that but it made no difference. Checking the source in the browser with firebug shows everything to be as expected, but with outline, i dont see the profile_narrative div so its a bit of a mystery
    Posted to Client Side Web Development (Forum) by misuk11 on 11/5/2009
  • css & body background image

    I have some css that specifies an image as the background for the page body body { background-image: url(../images/EBSMainBackground.jpg); background-repeat: no-repeat; background-position: left bottom; font-family: Trebuchet MS; font-size: 12px; background-attachment: scroll; } this works fine until I maximise the width of my web page and the image cuts off horizontally (obviously the width of the image is less than the full page width) Is there a way with CSS that will stretch the background image
    Posted to Client Side Web Development (Forum) by misuk11 on 11/3/2009
  • Re: LinqDataSource and views

    I'd missed the 's' off the end of the name, adding that made it work. Shame the error message couldnt have been a bit more informative
  • Re: LinqDataSource and views

    as soon as i run this command GridWhere.DataBind(); I get a NullReferenceException There seems to be a fundamental problem using views with Linq. Ive created a new method using an ObjectDataSource and it works (there is a slight problem with maximum rows that im working on) public ObjectDataSource All(int startRowIndex, int maximumRows) { ObjectDataSource ods = new ObjectDataSource(); ods.EnablePaging = true; ods.OldValuesParameterFormatString = "original_{0}"; ods.SelectCountMethod = "WhereCount";
  • Re: LinqDataSource and NullReferenceException

    I added an extra 's' to the end of the view name and it worked. When I used tables I always added the 's' and they worked, cant believe I missed something so obvious when using a view. Ive wasted days of my time on this, its a mistake I wont be making again. It would be nice if the dbml diagram would add the 's' to the entity names, at least that way you would always be reminded of the correct name to use. Thanks for pointing it out to me.
Page 1 of 75 (742 items) 1 2 3 4 5 Next > ... Last »