No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
Do Till Die
- Interests
- Programming, Driving, Gaming
3 Posted Topics
Re: In your Query.... Concate both the Values **"title and descritption" as TitleData** and now Training Document: <asp:DropDownList ID="TrainingDocIDTextBox" runat="server" DataSourceID="AccessDataSource2" DataTextField="TitleData" DataValueField="TrainingDocID" SelectedValue='<%# Bind("TrainingDocID") %>' onselectedindexchanged="TrainingDocIDTextBox_SelectedIndexChanged"> </asp:DropDownList> All The Best > I am trying to display the title and descritption of a document on a dropdown menu list but I … | |
Re: thr like this [CODE]create PROCEDURE sp_GetTime @FullName varchar(50), @ConsultantId numeric, @App_Date datetime output AS Declare @Cnt int set @Cnt =0 SELECT @Cnt= Count(*) FROM vwPatientConsultantAvailability vw inner Join Appointments app on vw.ConsultantId = app.ConsultantId where @FullName=FullName and @ConsultantId=ConsultantId and @App_Date Between DateA And DateB if(@Cnt >0 ) Begin -- The … | |
Re: Use this.. u may get data from ur excelsheet [ICODE] Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load Dim DBConnection = New OleDbConnection( _ "Provider=Microsoft.Jet.OLEDB.4.0;" & _ "Data Source=" & Server.MapPath("~/datame.xls") & ";" & _ "Extended Properties=""Excel 8.0;HDR=Yes""") DBConnection.Open() Dim SQLString As String = "SELECT * … |
The End.