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
N

nyogeswar

@nyogeswar
About
Posts
10
Topics
0
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • how to know id of dynamically created web server control on client side using javascript when sever control is on aspx page & that aspx page in MasterPage
    N nyogeswar

    ok .. as u have passed "this" i.e object totally to function use it x= obj.value; ================ anyway as of ur function it should work!!!

    ASP.NET database csharp javascript asp-net

  • can anyone help me with folder path file problem>?
    N nyogeswar

    do it in server control Convert as a ---> asp:hyperlink img --> asp:image Yogesh

    ASP.NET help question

  • Upload File
    N nyogeswar

    have you tried PostedFile.SaveAs(@SavePath & FileName) Yogesh

    ASP.NET help

  • can anyone help me with folder path file problem>?
    N nyogeswar

    I also faced the same problem but in different scenario. i solved by replacing html img control "" to asp:image server control and gave src path as "~/images/registerbidder.jpg" as in ur case. the "~" will point the root path. Yogesh

    ASP.NET help question

  • how to know id of dynamically created web server control on client side using javascript when sever control is on aspx page & that aspx page in MasterPage
    N nyogeswar

    In this particular case try use like Textbox textbox1 = new TextBox1(); textbox1.Attributes.Add("OnMouseOver","FunTest(this)"); and "this" will give the object and you can use in ur "Funtext" function... like obj.value 'No need of getElementById try this.... Sorry if i am wrong.... Yogesh -- modified at 2:47 Friday 30th March, 2007

    ASP.NET database csharp javascript asp-net

  • how to know id of dynamically created web server control on client side using javascript when sever control is on aspx page & that aspx page in MasterPage
    N nyogeswar

    You can access the server control in javascript by its property called "clientid" so in aspx assign a variable with the clientid of the textbox(or any server control) ex: var ctrid=<%= TextBox1.ClientId %>; and use it. Yogesh.

    ASP.NET database csharp javascript asp-net

  • Dim and diable web page
    N nyogeswar

    http://www.codeproject.com/aspnet/Modal_Dialog.asp[^]

    Best Regards, Yogesh........

    IT & Infrastructure

  • Add Comma's in Integer field
    N nyogeswar

    http://www.w3schools.com/xsl/el_decimal-format.asp[^] This Link would help u......... With Best Regards, Yogesh

    XML / XSL xml html database com tools

  • datagridview
    N nyogeswar

    Create DataTable using Dataset generated from the Adapter And Then create a DataView and assign to Datasource of DataGrid control. And Bind it. Sorry if iam understood ur question incorrectly....;P With Best Regards, Yogesh

    C# database

  • How to retrive values into DataGridView From a XMLFile using c#.net2.0
    N nyogeswar

    Use this Sample............. I have used DataCaching also in it.......... private void Page_Load(object sender, System.EventArgs e) { if(Cache["1"]==null) { FileStream fs = new FileStream(Server.MapPath("simple.xml"),FileMode.Open,FileAccess.Read); CacheDependency cd=new CacheDependency(Server.MapPath("simple.xml")); DataSet ds=new DataSet(); ds.ReadXml(fs); DataView xmldata =new DataView(ds.Tables[0]); Cache["1"]=xmldata; Cache.Insert("1",xmldata,cd); } DataGrid1.DataSource=Cache["1"]; DataGrid1.DataBind(); // Put user code to initialize the page here } With Best Regards, Yogesh

    C# csharp tutorial xml help
  • Login

  • Don't have an account? Register

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