Search

You searched for the word(s): userid:862647

Matching Posts

  • Re: Knowledgebase and database?

    Hi, Great Man, True,SQL Query is enough as long as you know how to write SQL QUERIES,If not,still no problem,because Micrsoft has kept Query designer which you can use easily,i mean without having much knowledge about sql. Regards
    Posted to Free For All (Forum) by shabirhakim1 on 11/3/2009
  • Re: Upcoming Birthday

    Hi, below is script used to display birthday on specfic day,so you can change it like <script language="JavaScript"> var arrBday = [ ['Mine,'11/23/1976], ['Yours','9/22/1967'], ['Ours','9/22/1978'] ]; function displayBdayList(today){ var bday,strList=''; for (var i=0;i<arrBday.length;i++){ bday = new Date(arrBday[i][1]); if (!isNaN(bday) && bday.getMonth()==today.getMonth() && bday.getDate()==today.getDate()) strList
    Posted to Web Forms (Forum) by shabirhakim1 on 10/31/2009
  • Re: Why can't I access these functions?

    Hi save that class in App_Code Folder then use below code where ever you want to use its methods Partial Class _Default Inherits System.Web.UI.Page Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load Dim objAppSettings As New AppSettings() objAppSettings.GetSettings(AppSettings.AppSettingStr.erroraddress) End Sub End Class Regards
    Posted to Getting Started (Forum) by shabirhakim1 on 10/30/2009
  • Re: Knowledgebase and database?

    Hello Great Man, Terminology sucks,anyways i can give you simple example like, any company having its product need to maintain some information regarding its product ,because customers ask? right? any database which stores meaningful data regarding something[like products] is called knowledgebase. No confusion. simple database can store data and wehn same database stores datainformation knowledge about something then we can say ,it is knowledgebase Regards
    Posted to Free For All (Forum) by shabirhakim1 on 10/30/2009
  • Re: simple question about sqldatasource

    Hi programmatically creat SqlDataSource, call the Select Method on it, retrieved the DataView, and converted the results to a DataTable that manipulate it. Dim connectionString As String = "...Northwind Connection String..." Dim selectSql As String = "SELECT [CategoryID], [CategoryName] FROM [Categories]" Dim args As New DataSourceSelectArguments() Dim dataSource As New SqlDataSource(connectionString, selectSql) Dim view As DataView = DirectCast(dataSource.[Select](args), DataView
    Posted to Getting Started (Forum) by shabirhakim1 on 10/29/2009
  • Re: DataBind Control Through Code

    Usually we use different controls for different purpose but one thing is common among all these controls that they can display data ,but if you just want to display data from the database,it is good to use Repeater or DataList, anyways you choice.just copy and paste below code in codebehind and aspx page as given below.just change field names <%@ Page Language="C#" AutoEventWireup="true" CodeFile="ForumQuestionpage.aspx.cs" Inherits="Forum_ForumQuestionpage"
    Posted to Data Presentation Controls (Forum) by shabirhakim1 on 10/28/2009
  • Re: "Must use updateable query" (Yup....another one...)

    Hi, Great Man, I agree that you can be GOD of your computer but trust me it is just physically,but when you are running software in it,unfortunately it gets controlled by devil. Anyways,Not a big issue,just check whether you have uninstalled for removed some software reciently,if not fine you can check your App Folder whether it is Writable or Readable only? Next you can just go through below links and try to find reason behind it. actually our windows has MDAC Components ,if this component is missing
  • Re: DataAccessHelper.cs

    Hi Great Man, you can see Great Explaination of same with examples here http://blogs.msdn.com/haibo_luo/archive/2005/11/17/494009.aspx Regards
    Posted to Time Tracker Starter Kit (Forum) by shabirhakim1 on 10/27/2009
  • Re: Wrap Text in Label Control

    Hi, Getting a label to be multiline within a set width. Now many of you know this trick, but I always have to re-remember the trick every time I need it, so this post can be a reference for you as well. The trick is actually this - Don't use a label. Use a textbox instead. Since all the controls inherit from the same base class, the text box and the label are very similar anyway. But only the textbox has the multiline capability. Once you have the textbox on your page the trick is to make it
    Posted to Web Forms (Forum) by shabirhakim1 on 10/27/2009
  • Re: How to create Dash Boards using ajax ?

    Hi, see here,along with source code sample http://dnnsilverlight.adefwebserver.com/Silverlight20/SilverlightDashboard/tabid/70/Default.aspx
Page 1 of 44 (433 items) 1 2 3 4 5 Next > ... Last »