Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #31.8K
Ranked #3K
~2K People Reached
About Me

Do Till Die

Interests
Programming, Driving, Gaming
Favorite Forums
Favorite Tags

3 Posted Topics

Member Avatar for RickyG

In your Query.... Concate both the Values **"title and descritption" as TitleData** and now Training Document:&nbsp;&nbsp; <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 …

Member Avatar for Bhaarat
0
104
Member Avatar for verbalurbs

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 …

Member Avatar for verbalurbs
0
1K
Member Avatar for arunasingh

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 * …

Member Avatar for sierrainfo
0
187

The End.