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
D

dotnetmember

@dotnetmember
About
Posts
37
Topics
7
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Controls in disabled state
    D dotnetmember

    Its ok with textbox but still problem exists with other controls...

    ASP.NET help

  • displaying data
    D dotnetmember

    It may not be problem with SP. It can be problem with connection string , passing wrong number or type of parameters to sp.

    ASP.NET database help question

  • Controls in disabled state
    D dotnetmember

    In my application,i have many web pages. When certain conditions are met, i want to disable all the controls in the web page. The problem is that when contorls are disabled, it is grayed out and users find difficulty to read the data in controls (textbox, radiobuttonlist, checkboxlist,drop down). Is there any solution to allow controls look as they are enabled even in disabled state. Any help appreciated..............

    ASP.NET help

  • requiredfieldvalidator
    D dotnetmember

    My requirement is that i need only one textbox out of four to be validated, it can be any textbox. If i use required field validator for all textbox, it validates all four textboxes which is not my need. It is sufficient to have value in any of these four

    ASP.NET tutorial

  • requiredfieldvalidator
    D dotnetmember

    Hi, I have four textboxes in my web page. I want to apply required field validator such that atleast one of the text box value is required,it is mandatory to have value in any one of the four . how to validate that.

    ASP.NET tutorial

  • CSV files
    D dotnetmember

    Hi experts, In my application, I do export data from datatable to csv file and import data from csv file. My problem is since csv file uses comma(,) as delimiter it splits text data with comma as two columns. Ur suggestions r highly appreciated.

    ASP.NET help

  • master page
    D dotnetmember

    i am working on an application which has seperate web projects under same solution.Instead of developing a master page for each and every project , Is there a way we can have a master page in solution level and use that master page in different projects under the same solution?

    ASP.NET question

  • AJAX Help
    D dotnetmember

    hi friend, i dont think it is possible to invoke content page within content template of the master page without a post back. Content page is seperate page and invokin it surely makes a post back to occur. I would suggest u to design a page with update panel and wizard control within it. u can place the controls of each page in each tab index and on click of image buttons, just change the active index of the wizard control like wzdname.ActiveStepIndex = 1; since all the design is within the same page, u can achieve ur need without postback. hope it works.

    ASP.NET question csharp help

  • error --canot find table(0)
    D dotnetmember

    chk whether ur dataset has any tables. may be ur query is not returning any resultset.

    ASP.NET css database help announcement

  • website & web appln
    D dotnetmember

    hello folks, what is diffrence bet web application and website projects

    ASP.NET question

  • ASP 3.5 Formview + Findcontrol in VB - Please help as I'm going crazy
    D dotnetmember

    ur coding is correct but u need to make dummy binding to form view to make it build control hierarchy. try this in page load, If Not Page.IsPostBack Then Dim arr As New ArrayList() arr.Add(1) Details.DataSource = arr Details.DataBind() End If

    ASP.NET help tutorial question

  • Log Out issue
    D dotnetmember

    if u r using master pages, code this in page load of master page or in page load of everypage Response.Expires = 60; DateTime now = DateTime.Now.AddMilliseconds(-1); Response.ExpiresAbsolute = now; Response.AddHeader("pragma", "no-cache"); int timeout = (Session.Timeout + 1) * 60; Response.AddHeader("Refresh", timeout.ToString()); Response.AddHeader("cache-control", "private"); Response.CacheControl = "no-cache"; if (Session.IsNewSession) { Response.Redirect("~/Default.aspx"); } and in logout Session.Abandon();

    ASP.NET help

  • Specified cast is not valid
    D dotnetmember

    hi try this, Dim str As String= CType(dgi.Cells(0).Controls(0), Label).Text and be sure that control(0) of cell(0) is text field

    ASP.NET html database graphics sysadmin docker

  • intellisense in asp
    D dotnetmember

    yes, intellisense does not work for classic asp in VS 2008. hope VS 2008 SP1 wil do the work,tryin 4 same

    ASP.NET visual-studio

  • intellisense in asp
    D dotnetmember

    yes, but that does not work with classic asp. hope some settings does the work, any idea :zzz:

    ASP.NET visual-studio

  • intellisense in asp
    D dotnetmember

    hi guys, any idea to get intellisense in classic asp

    ASP.NET visual-studio

  • convert.ToInt32
    D dotnetmember

    This is very silly mistake which u can trace it out.

    yueru wrote:

    int s = Convert.ToInt32(Duration.Substring(1, 2)); int s = Convert.ToInt32(Duration.Substring(1, 2)); int y = Convert.ToInt32(Duration.Substring(3, 2)); int l = Convert.ToInt32(Duration.Substring(6, 2));

    In above four lines, check wat is the value of (Duration.Substring()); it may be null or may not be in format to convert to integer.

    C# help question

  • Selecting Multiple Nodes in ASP.Net treeview
    D dotnetmember

    allow checkboxes for the treeview by setting ShowCheckBoxes property to 'All' the and u can select multiple nodes and on click of add button ,take those checked nodes to right.

    ASP.NET csharp asp-net data-structures help question

  • Calling another page in side a wizard control in asp.net
    D dotnetmember

    I dont think it is possible to invoke another page within wizard control. But if u want to navigate from one page to another and back to same page, i dont see any problem. Wizard control has nothing to do with. And if u want values from page2 to page1, they are possible with sessions, query strings,..

    modified on Wednesday, May 6, 2009 1:41 AM

    ASP.NET csharp asp-net help tutorial question

  • WinForms Comboboxes
    D dotnetmember

    try this way, if (checkBox1.Checked == true) cbPostalCountry.SelectedValue= cbPhysicalCountry.SelectedValue;

    C# question csharp winforms
  • Login

  • Don't have an account? Register

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