Skip to main content

Posts

Showing posts with the label runtime menu items

Add items to menu at runtime,display message,Web service to search item in textbox etc in asp.net

Add items to menu at runtime using asp.net Dim str, str1 As String str = "select distinct PRODUCT_CATEGORY,PARENT_CATEGORY_CD,PRODUCT_CATEGORY_CD from PRODUCT_CATEGORY where PARENT_CATEGORY_CD is NULL" Dim adp As New SqlDataAdapter(str, cn.openDb()) adp.Fill(ds) cn.closeDb() If (ds.Tables(0).Rows.Count > 0) Then For Each dr In ds.Tables(0).Rows Dim mu As MenuItem = New MenuItem mu.Text = dr("PRODUCT_CATEGORY").ToString mu.Value = dr("PRODUCT_CATEGORY_CD").ToString BrowsebyCategory.Items.Add(mu) Next End If This code is to Add items to menu at runtime using asp.net code you can use code to backend side Simple Display message using asp.net Simple Display message using asp.net. Just use following code. Dim myStringVariable As String = String.Empty myStringVariable = "Message" ClientScript.RegisterStartupScript(Me.[GetType](), "myalert", "alert('" & myStringVariab