Search

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

Matching Posts

  • Re: Design View

    If design view means visual studio design view then I think that you are trying to open design view while compiling the application. or press shift+f7 in code view to open design view.
    Posted to Visual Studio 2008 (Forum) by mubashirjavaid on 5/11/2009
  • Re: Authentication is not running on all pages.

    I have changed the Protection from 'All' to 'None', and it has solved the problem. But why? What do I have to do to get it working on 'All' again?
    Posted to Security (Forum) by mubashirjavaid on 8/5/2008
  • Re: Authentication is not running on all pages.

    yes. allow users="admin" roles="users, admin"
    Posted to Security (Forum) by mubashirjavaid on 8/5/2008
  • Authentication is not running on all pages.

    Hello, I have made two pages 1- a default.aspx 2- a search.aspx I have used form authentication. When user try to access the default.aspx page form authentication redirect it to the login page. After user authentication the defualt.aspx page will be showen to the user. After this user navigate to search.aspx page (through a link in default.aspx page). Form authentication again ask for login. I am getting this issue is my international server but my local server is runing the application smooth. Looking
    Posted to Security (Forum) by mubashirjavaid on 8/5/2008
  • Join two jpg images in one gif

    Hello. I would like to join two images in one jif image so that image1 should be at frame 1 and image two should be at fram 2. I also would like to display these images like if some one want to view image1 then I read the image of frame 1 and display. Please also give me efficiency comparison If I would like to join 1000 images in 1 minut. Thanks in advance.
    Posted to System.Drawing/GDI+ (Forum) by mubashirjavaid on 7/23/2008
  • I want to save the status of checkboxes in a datalist

    I want to save the status of checkboxes in a datalist, where paging is also implemented can you please give me the solution
  • Re: Firing TextBoxChanged Event

    insert this in aspx page. _______________________________________________ Text Box 1<asp:TextBox ID="TextBox1" runat="server" OnTextChanged="TextBox1_TextChanged" AutoPostBack="True"></asp:TextBox></div> <br /> TextBox 2<asp:TextBox ID="TextBox2" runat="server" AutoPostBack="True"></asp:TextBox> ________________________________________________ then enter this in code behind protected void TextBox1_TextChanged
    Posted to Web Forms (Forum) by mubashirjavaid on 8/30/2007
  • Re: how to fire an event once u leave the textbox

    First Set Autopostback property to true. then add this event handlar protected void TextBox1_TextChanged( object sender, EventArgs e) { Fill combo box here }
    Posted to Web Forms (Forum) by mubashirjavaid on 8/30/2007
  • Re: creating web quiz using asp.net

    On this page the video series includes over six hours of video-based instruction that walks you through creating and deploying your first web page, to creating a fully-functioning Quiz Engine web site. http://www.asp.net/learn/videos/
    Posted to Getting Started (Forum) by mubashirjavaid on 8/29/2007
  • Re: Response.WriteFile with ZIP files

    Try to use this code with some changes. Response.Clear(); Response.ClearContent(); Response.ClearHeaders(); Response.ContentType = " application/x- zip -compressed"; Response.AppendHeader("Content-Disposition", string.Format("attachment; filename=download{0}.txt", Session["UserId"].ToString())); downloadFilePath = string.Format("{0}download{1}.zip",Server.MapPath("Temp\\"), Session["UserId"].ToString()); //Get all Data related
    Posted to Web Forms (Forum) by mubashirjavaid on 8/29/2007
Page 1 of 3 (25 items) 1 2 3 Next >