Search

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

Matching Posts

  • Re: fixed text length in a label

    You can also use textbox field by marking it as readonly and hiding its borders :)
    Posted to Web Forms (Forum) by asimiq80 on 8/27/2009
  • Re: Dynamic buttons and textboxes

    Whenever you hit the button, page is postbacked and dynamically added controls are erased and only the last dynamically added control is added in page controls. You have to preserve the previous controls through some technique like add the dynamically controls information in viewstate or session, and re-generate on each post back.
    Posted to Web Forms (Forum) by asimiq80 on 11/14/2008
  • Re: Using Combobox in a web application

    Your question is not cleared, but have a look the given article: http://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.dropdownlist.aspx
    Posted to Web Forms (Forum) by asimiq80 on 11/14/2008
  • Re: hi

    You can disable the complete right click menu on any control but selected options can not mark as disable. To disable right click menu on that image, add "oncontextmenu" event on that image tag and write "return false;" statement.
    Posted to Client Side Web Development (Forum) by asimiq80 on 11/12/2008
  • Re: how to prevent session sharing ??

    You can not prevent session sharing in tabs, because that is browser default behavior. The session is shared in all child windows, child window may be a tabbed window or a new browser window.
    Posted to State Management (Forum) by asimiq80 on 9/23/2008
  • Re: how to check if checkboxes in datalist is checked?

    Here is code to read value of checkbox in datalist control. foreach (DataListItem item in this.dataListName.Items) { //if check box is an html control HtmlInputCheckBox chk = item.Cells[0].FindControl("checkBoxName") as HtmlInputCheckBox; //OR if checkbox is server side asp.net control CheckBox chk = item.Cells[0].FindControl("chkboxFlag") as CheckBox; //to do }
    Posted to Data Presentation Controls (Forum) by asimiq80 on 9/23/2008
  • Re: Visual Studio 2008 General questions (IIS and VS)

    By default when web application is run in VS2005 or later, it uses VS web server instead of IIS, if you are working on a proper application then it is recommended to use IIS web server instead of visual studio web server. You can change web server settings through project properties.
    Posted to Visual Studio 2008 (Forum) by asimiq80 on 5/2/2008
  • Re: replace existing uploaded file with new file on server

    You have to mark an entry in database if user has already uploaded his file, then you can easily replace the existing uploaded file. You can download file with two ways, provide full path to that file in hyperlink tag, or if you wanna do this from server side, then try given code: Response.AppendHeader( "content-disposition","attachment; filename=" + name ); Response.ContentType = "Application/msword";//or pdf Response.WriteFile( path ); Response.End();
    Posted to Web Forms (Forum) by asimiq80 on 5/2/2008
  • Re: make listbox item bold

    Hi, you can not bold the list or combo box items invidually, even you can not change the font styles of a single item except forecolors.
    Posted to Client Side Web Development (Forum) by asimiq80 on 5/2/2008
  • Re: hiiiiiiiiiiiiii

    Hi, i think you will find all of your answers from given link, let me know if you are still confused. http://www.asp.net/Learn/Security/tutorial-02-vb.aspx
    Posted to Security (Forum) by asimiq80 on 5/2/2008
Page 1 of 4 (35 items) 1 2 3 4 Next >