473,778 Members | 1,901 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

SelectParameter s and SqlDataSource question

Hi,

Here is my SqlDataSource in my C#.2.0 aspx file:
<asp:SqlDataSou rce ID="SqlDataSour ceA" runat="server" ConnectionStrin g="<%$
ConnectionStrin gs:GConnectionS tringA %>"
SelectCommand=" SELECT TestNo, AcceptDate, status FROM TestForm
WHERE (AcceptDate BETWEEN @prAcceptDate AND @prAcceptDateEn d)"
ProviderName="< %$
ConnectionStrin gs:GConnectionS tringA.Provider Name %>"
EnableViewState ="False">
<SelectParamete rs>
<asp:Paramete r Name="prAcceptD ateStart" />
<asp:Paramete r Name="prAcceptD ateEnd" />
</SelectParameter s>
</asp:SqlDataSour ce>

In the same aspx file I have DropDownList controls ddlStartYear,
ddlStartMonth, ddlStartDay, ddlEndYear, ddlEndMonth, and ddlEndDay.
My question is how do I let the Parameter prAcceptDateSta rt to be the
combination of ddlStartYear+dd lStartMonth+ddl ddlStartDay?
Thanks for hlep.
Jason
Jun 6 '07 #1
2 6754
Jason,

There is no real way to do this with the DropDownList control. You may want
to consider creating a calculated column in your query, or changing the
underlying dataset before you bind it.

Hope this helps,
Steve

"Jason Huang" <Ja************ @hotmail.comwro te in message
news:ek******** ********@TK2MSF TNGP06.phx.gbl. ..
Hi,

Here is my SqlDataSource in my C#.2.0 aspx file:
<asp:SqlDataSou rce ID="SqlDataSour ceA" runat="server"
ConnectionStrin g="<%$ ConnectionStrin gs:GConnectionS tringA %>"
SelectCommand=" SELECT TestNo, AcceptDate, status FROM TestForm
WHERE (AcceptDate BETWEEN @prAcceptDate AND @prAcceptDateEn d)"
ProviderName="< %$
ConnectionStrin gs:GConnectionS tringA.Provider Name %>"
EnableViewState ="False">
<SelectParamete rs>
<asp:Paramete r Name="prAcceptD ateStart" />
<asp:Paramete r Name="prAcceptD ateEnd" />
</SelectParameter s>
</asp:SqlDataSour ce>

In the same aspx file I have DropDownList controls ddlStartYear,
ddlStartMonth, ddlStartDay, ddlEndYear, ddlEndMonth, and ddlEndDay.
My question is how do I let the Parameter prAcceptDateSta rt to be the
combination of ddlStartYear+dd lStartMonth+ddl ddlStartDay?
Thanks for hlep.
Jason

Jun 6 '07 #2
On Jun 5, 10:48 pm, "PlatinumBa y" <stevan...@comm unity.nospamwro te:
Jason,

There is no real way to do this with the DropDownList control. You may want
to consider creating a calculated column in your query, or changing the
underlying dataset before you bind it.

Hope this helps,

Steve

"Jason Huang" <JasonHuang8... @hotmail.comwro te in message

news:ek******** ********@TK2MSF TNGP06.phx.gbl. ..
Hi,
Here is my SqlDataSource in my C#.2.0 aspx file:
<asp:SqlDataSou rce ID="SqlDataSour ceA" runat="server"
ConnectionStrin g="<%$ ConnectionStrin gs:GConnectionS tringA %>"
SelectCommand=" SELECT TestNo, AcceptDate, status FROM TestForm
WHERE (AcceptDate BETWEEN @prAcceptDate AND @prAcceptDateEn d)"
ProviderName="< %$
ConnectionStrin gs:GConnectionS tringA.Provider Name %>"
EnableViewState ="False">
<SelectParamete rs>
<asp:Paramete r Name="prAcceptD ateStart" />
<asp:Paramete r Name="prAcceptD ateEnd" />
</SelectParameter s>
</asp:SqlDataSour ce>
In the same aspx file I have DropDownList controls ddlStartYear,
ddlStartMonth, ddlStartDay, ddlEndYear, ddlEndMonth, and ddlEndDay.
My question is how do I let the Parameter prAcceptDateSta rt to be the
combination of ddlStartYear+dd lStartMonth+ddl ddlStartDay?
Thanks for hlep.
Jason- Hide quoted text -

- Show quoted text -
You could also store the combination(ddl StartYear+ddlSt artMonth
+ddlStartDay) into a Session Variable, and make your AcceptDateStart a
Session Parameter. Something Like below:

<SelectParamete rs>
<asp:SessionPar ameter Name=" prAcceptDateSta rt"
SessionField="C ombinationDateS ession" />
</SelectParameter s>
Jun 6 '07 #3

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
1219
by: Jason Shohet | last post by:
I'm using the new SqlDataSource with the beta. Below I have my code: asp:SqlDataSource ID="ds" Runat="server" SelectCommand="SELECT employee_ssno, firstname, lastname FROM employee_temp order by lastname" ConnectionString="<%$ ConnectionStrings:AppConnectionString1 %>" ProviderName="System.Data.OleDb" UpdateCommand="UPDATE DBOWEB.EMPLOYEE_TEMP SET firstname=?, lastname=? WHERE employee_ssno=?"> </asp:SqlDataSource>
0
3384
by: cyberbless | last post by:
I would like to dynamically assign a Select Statment to a a SqlDataSource. Problem is the SqlDataSource.Select() Command requires a "dataSourceSelectArgument" as one of its arguments. 1. What if I don't have an argument to give to out our the Select Statement. Or if the arguments are pre-assigned. Take the following lines of code for example. --------------------------------------------------------- SqlDataSource.InsertCommand =...
1
6313
by: Mike P | last post by:
I am using a GridView with 3 SelectParameters 2 of which are ControlParameters, but the third of my SelectParameter values is derived through my code rather than a QueryString, Control etc, so I need to add my select parameters programmatically. Here are my 2 ControlParameters are they were originally : <SelectParameters> <asp:ControlParameter Name="Month" ControlID="ddlMonth" PropertyName="SelectedValue" />
0
1024
by: JR | last post by:
I have a question with SqlDataSource controls. I have a SqlDataSource control that has a select, insert and update parameters defined. This is running with Visual Studio 2005 Team system and Net Framework 2.0. My problem is I want to get the last generated Identity field from a table =IDENT_current('tblname')=. I can put this command in the Select Command but when I try execute it it wants more parameters. Example:...
0
1388
by: | last post by:
Hello, I have a gridview which calls a database query through a regular SqlDataSource. However, any argument I try to pass to the select query in the SqlDataSource using <selectparametersfails. This is my code, where the propertyname and controlid refer to a TextBox on the same page: <selectparameters> <asp:controlparameter type="string" name="getfile" controlid="srchForm" propertyname="Text" DefaultValue=" "/> </selectparameters>
3
2959
by: djc | last post by:
I am playing with the (new to me) sqlDataSource class. I used it to bind data from a database table into a listbox with no code, worked great. Now I need to do an INSERT for every item in a listbox. I used to just code the ado stuff myself in .net 1.1. For example creating connection object, creating sqlCommand object, parameters, etc... I would just create the ado stuff, then loop through the listbox changing the sqlcommand parameter...
4
4618
by: Mike | last post by:
Is there any difference in performance between a SqlDataSource and an ObjectDataSource - assuming they are being deployed to perform the same task against a SQL Server database? Mike
2
4889
by: MikeB | last post by:
Hello All, how can I set my selectparameter to a constant value within my constants class or to a value in my web.config file?
0
1332
by: jobs | last post by:
Is there any way to do this? <asp:SqlDataSource ID="DSCity1" runat="server" ConnectionString="<% $ ConnectionStrings:PPLineaConnection%>" ProviderName="System.Data.OracleClient" SelectCommand="select City_Code, City from City where country_code= &country"> <SelectParameters> <asp:ControlParameter ControlID="CityDropDown1"
0
9629
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9470
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10298
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
10069
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8957
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7475
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6723
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5500
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
3
2865
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.