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
CODE PROJECT For Those Who Code
  • Home
  • Articles
  • FAQ
Community
M

manojch2

@manojch2
About
Posts
3
Topics
0
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • how to show gridview with out data
    M manojch2

    Try This Protected Sub ItemDB(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.DataGridItemEventArgs) Dim dv As DataView = CType(DataGrid1.DataSource, DataView) Dim drv As DataRowView = CType(e.Item.DataItem, DataRowView) If dv.Table.Rows.Count = 0 Then 'By default the Datagrid Header is shown in case there is no Data Avaiable 'So in case of No Data found 'Check the ListItemType.Header If e.Item.ItemType = ListItemType.Header Then Dim i As Integer = e.Item.Cells.Count 'Assign "No Search result Found" in one of the cells of DataGrid e.Item.Cells(0).Text = "No Search Results Found" 'Remove Rest of the empty cells from Datagrid Dim j As Integer For j = i - 1 To 1 Step -1 e.Item.Cells.RemoveAt(j) Next End If End If End Sub '

    manojchilhate

    ASP.NET csharp asp-net tutorial

  • How to end Cookie's Session?
    M manojch2

    Try This protected void Session_End(Object sender, EventArgs e) { Response.Cookies["__rsauser"].Expires = DateTime.Now.AddDays(-1); }

    manojchilhate

    ASP.NET help question html sysadmin security

  • Control 'RequiredFieldValidator1' of type 'RequiredFieldValidator' must be placed inside a form tag with runat=server.
    M manojch2

    The form tag missing from your code. the RequiredFieldValidator must be inside the form tag Like

    Place your Html and valdation related code here

    manojchilhate

    ASP.NET sysadmin help tutorial
  • Login

  • Don't have an account? Register

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