Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
F

firozu

@firozu
About
Posts
23
Topics
1
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Response.Redirect() is not working in the Remote Environment
    F firozu

    Just replace

    Subin Alex wrote:

    Response.Redirect("~/A/Hi.aspx");

    with Response.Redirect("~/A/Hi.aspx", false); Hope this works....

    ASP.NET help csharp asp-net question workspace

  • How to avoid post back of other user controls on post back of one user control contend in a .aspx page
    F firozu

    Try using AJAX UpdatePanel control. Put each of your tabs in different UpdatePanel. Follow the links mentioned below-- http://www.asp.net/Ajax/Documentation/Live/ViewSample.aspx?sref=UpdatePanelTutorialIntro1[^] http://programming.top54u.com/post/ASP-Net-AJAX-UpdatePanel-Sample-Application.aspx[^]

    ASP.NET winforms tutorial

  • search in website
    F firozu

    I found a good article for recursive file searching in C# Follow the link mentioned below-- http://support.microsoft.com/kb/303974[^]

    ASP.NET question

  • how to Align Code in aspx file??
    F firozu

    In Visual Studio, GoTo Edit -> Advanced ->Format Document. Make sure all html tags have a closing tag, otherwise the document will not be formatted. Hope this helps.

    ASP.NET html tutorial question

  • how to remove System.InvalidCastException error?
    F firozu

    According to the error text, I think there may be a problem with appset_holder[i1] = Convert.ToInt16(dr.GetString(3)) this line of code. Maybe the value returning from database is null or empty and you are trying to convert it to Int16. Check the value in DB. Hope this helps.

    ASP.NET csharp asp-net visual-studio com help

  • Adding controls Runtime
    F firozu

    You need to loop through all the controls on the web page and if you find the control is of type 'checkbox', then check for its Checkbox.Checked property. Hope this helps.

    ASP.NET csharp asp-net help question

  • file upload control
    F firozu

    If you want to display the image on a web page, put HTML 'Image' object on web page and make this a server control. Then assign Image.Src = 'image path'. You'll see the image on the page. Hope this helps.

    ASP.NET

  • Populate PropertyGrid from XML
    F firozu

    Hi, Can anyone tell me how to populate a Property Grid with data from XML file? Thanks

    C# css xml tutorial question

  • About Creating Rss
    F firozu

    Use "RSS.Net" open source library for creating your own RSS Feeds.

    ASP.NET help question

  • Gridview linkButton and Modal Popup Extender
    F firozu

    Sarfaraj Ahmed wrote:

    Protected Sub FillMemberDetails(i want to send memberID here when i click linkSelect button)

    Set LinkButton.CommandArgument = _bbMembers.MemberID.ToString() in the GridView_RowDataBound function and fetch this memberID in the RowCommand Event like dim memberID as string = e.CommandArgument Now call the Protected Sub FillMemberDetails(memberID) function in the RowCommand event. Hope this works for you!!

    ASP.NET sysadmin help

  • How to Find Control in a page which is inherited from MasterPage
    F firozu

    Kuricheti wrote:

    for(int i=1;i<=10;i++) { (TextBox) txt = (TextBox)FindControl("TextBox"+i); }

    Try using -- for(int i=1;i<=10;i++) { (TextBox) txt = (TextBox)FindControl(this.ClientID + "TextBox"+i); } OR for(int i=1;i<=10;i++) { (TextBox) txt = (TextBox)FindControl(this.ClientID + "_TextBox"+i); } Hope this works for you.

    ASP.NET help tutorial

  • Hide panel control in javascript.
    F firozu

    If your button_click has a postback than its better to hide the panel during postback, rather than using javascript.

    ASP.NET csharp javascript asp-net sysadmin

  • Working same project by multiple programmers simultaniously
    F firozu

    Both of you can divide the project amongst yourself and then merge the web forms in the application manually. Steps to follow- 1. Build the webforms. 2. Copy all the webforms & classes which was coded by your friend on your PC in the project folder . 3. Open the solution (.sln) file. Right-click in solution explorer and select "Include In Project". Compile the project. Your application is built for release. :)

    ASP.NET csharp

  • Add attribute to a dynamically created imagebutton control
    F firozu

    CandyMe wrote:

    ImageButton img = new ImageButton(); img.ImageUrl = "a.gif"; img.Attributes.Add("onmouseover", "this.src='" + imgMouseOverURL + "'");

    ImageButton accepts 'ImageUrl' attribute rather than 'Src' attribute which is an attribute for HTML Image. Try modifying your last line of code to--- img.Attributes.Add("onmouseover", "this.ImageUrl='" + imgMouseOverURL + "'"); Hope this works :)

    ASP.NET html help question

  • page load and back to same position
    F firozu

    Set 'SmartNavigation' property of page to TRUE.

    ASP.NET question

  • Gridview
    F firozu

    kiran@p2softech wrote:

    TextBox txtNewName=(TextBox)GridView1.FooterRow.FindControl("txtNewName");

    Try Using this "TextBox txtNewName=(TextBox)GridView1.Rows.FindControl("txtNewName");" If this helps then please rate this msg. :)

    ASP.NET tutorial

  • Add row to Gridview
    F firozu

    Mahimam wrote:

    How to add that information as a row to Gridview when they upload the file.

    According to me it would be better if you can store the filenames in an ArrayList, after the file is finished uploading, and then bind this arraylist to the GridView. Simple isn't it?:)

    ASP.NET tutorial

  • how to use ASP.NET virtual server to start a website without using IIS
    F firozu

    Have a look at the link provided below. Hope it helps. http://weblogs.asp.net/rmclaws/archive/2005/10/25/428422.aspx

    ASP.NET csharp asp-net sysadmin windows-admin help

  • Preventing post back on selected item of RadioButtonList
    F firozu

    If you are adding individual radio buttons to RadioButtonList at run-time then, before adding a radio button, set its "AutoPostBack" property to 'TRUE' or 'FALSE' as per your requirement.

    ASP.NET question

  • field validation in content pages
    F firozu

    You can add a tag inside "asp:content" tag and call the javascript functions. e.g. - asp:Content ID="Content1" ContentPlaceHolderID="ContentHolderID" Runat="server"> <script type="text/javascript" language="javascript"> function FormValidate() { .... Hope this helps. </x-turndown>

    ASP.NET javascript html question
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups