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
A

Arvind B

@Arvind B
About
Posts
8
Topics
0
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • coding newsletter for an application
    A Arvind B

    Hi Navin I guess you know the requirements best ! So create it accordngly If you just want a simple newsletter function..I suggest ... 1) create a webpage 2) for newsletter body, place a HTML editor in the page (e.g. fckeditor see fckeditor.net) 3) add controls/textboxes for collecting from, to, and subject fields and do the programming ... Hope this Helps Arvind

    ASP.NET help tutorial announcement

  • How to execute a javascript after a post back event occured??
    A Arvind B

    Hi Place below code after post back event handler If Not IsClientScriptBlockRegistered("anyNameToIdentify") Then RegisterClientScriptBlock("anyNameToIdentify", "alert('here ya go !')") .......... ..........

    ASP.NET javascript help tutorial question

  • How to let two gridview side by side in one form?
    A Arvind B

    '------------------------------------------------ 'place a grid dgMaster 'inside a template col place grid dgChild 'u can design both grid at design time 'call below code after binding master grid 'u can also do this in itemcreated event '------------------------------------------------ '--declare a data grid object Dim dgchild As DataGrid '--suppose the master grid is dgmaster '--loop thro all items of a datagrid For i = 0 To dgMaster.Items.Count - 1 'find child grid dgChild = dgMaster.Items(i).FindControl("dgChild") 'bind this grid dgchild.DataSource = myDataSource dgchild.DataBind() Next Hope this helps Arvind B

    ASP.NET sysadmin tutorial question

  • Security Exception
    A Arvind B

    i don't know the exact solution but you can try by adding identity impersonate="true" to u r web.config file also the access file must reside in application domain

    ASP.NET help csharp asp-net database com

  • Dynamic Crystal Reports
    A Arvind B

    >design report in report expert >give a name to u r report e.g. rptMain wtite code like this dim rDoc as new rptMain() '--now build a data table / data reader object '--i guess u r familiar with that '--the datatable must return same columns as defined in report at design time '--**this way u can bypass logininfo of sql server** Dim tb as datatable = myMethodOfPopulatingIt() rDoc.SetDataSource(tb) '--bind to cr viewer myCrViewer.ReportSource = rDoc hope this helps

    ASP.NET database sql-server sysadmin help tutorial

  • Reload Image Control In The Most Efficient Way?
    A Arvind B

    U have to use javascript to animate images. if u fetch image urls fro db you can store them in a hidden variable i your form by some separator e.g. a.bmp,b.bmp,c.gif etc now use js to rotate them in a divison

    ASP.NET question csharp asp-net learning

  • Refresh Page Problem
    A Arvind B

    Hi naresh U can use hidden iframe on home page which should be a page on same domain and it should fetch data every n seconds by using javascript timer functions and changes portions of home page e.g. in iframe ... window.parent.document.getElementById("whatever").innerText=yourValue; hope this helps

    ASP.NET help tutorial

  • Create Radio Button Group
    A Arvind B

    U should ideally code in the itemCreated event of datagrid if u r adding / modifying controls at runtime.

    ASP.NET
  • Login

  • Don't have an account? Register

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