Click here to Skip to main content
15,914,943 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: textbox entry restrict Pin
simsen5-Oct-08 20:35
simsen5-Oct-08 20:35 
GeneralRe: textbox entry restrict Pin
Kissy165-Oct-08 21:04
Kissy165-Oct-08 21:04 
GeneralRe: textbox entry restrict Pin
eyeseetee5-Oct-08 21:58
eyeseetee5-Oct-08 21:58 
GeneralRe: textbox entry restrict Pin
simsen5-Oct-08 22:00
simsen5-Oct-08 22:00 
AnswerRe: textbox entry restrict Pin
Vengatachalapathy Palanivel6-Oct-08 2:07
Vengatachalapathy Palanivel6-Oct-08 2:07 
Questioncross domain login Pin
alok.mailbox5-Oct-08 18:58
alok.mailbox5-Oct-08 18:58 
AnswerRe: cross domain login Pin
rihdus5-Oct-08 21:09
rihdus5-Oct-08 21:09 
GeneralRe: cross domain login Pin
alok.mailbox6-Oct-08 2:06
alok.mailbox6-Oct-08 2:06 
AnswerRe: cross domain login Pin
Deepak the Cool6-Oct-08 3:00
Deepak the Cool6-Oct-08 3:00 
QuestionMembership and roles problem. Pin
SUDHAKAR PALLAM5-Oct-08 18:10
SUDHAKAR PALLAM5-Oct-08 18:10 
AnswerRe: Membership and roles problem. Pin
AlexeiXX35-Oct-08 19:01
AlexeiXX35-Oct-08 19:01 
GeneralRe: Membership and roles problem. Pin
SUDHAKAR PALLAM5-Oct-08 19:08
SUDHAKAR PALLAM5-Oct-08 19:08 
GeneralRe: Membership and roles problem. Pin
AlexeiXX35-Oct-08 19:15
AlexeiXX35-Oct-08 19:15 
QuestionHow could I populate a dropdown box in formview if form view is placed inside a wizard? Pin
JUNEYT5-Oct-08 8:32
JUNEYT5-Oct-08 8:32 
AnswerRe: How could I populate a dropdown box in formview if form view is placed inside a wizard? [modified] Pin
AlexeiXX35-Oct-08 9:13
AlexeiXX35-Oct-08 9:13 
GeneralRe: How could I populate a dropdown box in formview if form view is placed inside a wizard? Pin
JUNEYT5-Oct-08 12:09
JUNEYT5-Oct-08 12:09 
Thanks for responding.

Your sample requires a datasource. However my aim is to ad items in dropdownbox one by one in back-end. Now I decided to move everything out of formview control and now facing another difficulty to bind the dropdownboxes with objectdatasource. All I want is to pass each single dropdownboxes' selected values to objectdatasource when I click the insert button. The button should initiate the following procedure.

<br />
    Private Sub ObjectDataSource1_Inserting(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.ObjectDataSourceMethodEventArgs) Handles ObjectDataSource1.Inserting<br />
<br />
        Dim ParamsFromPage As IDictionary = e.InputParameters<br />
        Dim NewObj As New property_availability(0, 0, 0, 0, "")<br />
<br />
        NewObj.Getyear = Int32.Parse(ParamsFromPage("GetYear")).ToString<br />
        NewObj.GetMonth = Int32.Parse(ParamsFromPage("GetMonth")).ToString<br />
        NewObj.GetDayFrom = Int32.Parse(ParamsFromPage("GetDayFrom")).ToString<br />
        NewObj.GetDayTo = Int32.Parse(ParamsFromPage("GetDayTo")).ToString<br />
        NewObj.GetStatus = ParamsFromPage("GetStatus").ToString<br />
<br />
        ParamsFromPage.Clear()<br />
<br />
        ParamsFromPage.Add("GetYear", NewObj.Getyear)<br />
        ParamsFromPage.Add("GetMonth", NewObj.GetMonth)<br />
        ParamsFromPage.Add("GetDayFrom", NewObj.GetDayFrom)<br />
        ParamsFromPage.Add("GetDayTo", NewObj.GetDayTo)<br />
        ParamsFromPage.Add("GetStatus", NewObj.GetStatus)<br />
<br />
    End Sub<br />
<br />


Do you have an idea how to do that?

Thanks.


What a curious mind needs to discover knowledge is noting else than a pin-hole.


GeneralRe: How could I populate a dropdown box in formview if form view is placed inside a wizard? Pin
AlexeiXX35-Oct-08 18:55
AlexeiXX35-Oct-08 18:55 
GeneralRe: How could I populate a dropdown box in formview if form view is placed inside a wizard? Pin
JUNEYT5-Oct-08 23:20
JUNEYT5-Oct-08 23:20 
GeneralRe: How could I populate a dropdown box in formview if form view is placed inside a wizard? Pin
AlexeiXX36-Oct-08 4:52
AlexeiXX36-Oct-08 4:52 
GeneralRe: How could I populate a dropdown box in formview if form view is placed inside a wizard? Pin
JUNEYT6-Oct-08 5:25
JUNEYT6-Oct-08 5:25 
GeneralRe: How could I populate a dropdown box in formview if form view is placed inside a wizard? Pin
AlexeiXX36-Oct-08 8:41
AlexeiXX36-Oct-08 8:41 
GeneralRe: How could I populate a dropdown box in formview if form view is placed inside a wizard? Pin
saber1381200229-Oct-08 21:02
saber1381200229-Oct-08 21:02 
QuestionExam 528 Question Pin
AlexeiXX35-Oct-08 7:11
AlexeiXX35-Oct-08 7:11 
AnswerRe: Exam 528 Question Pin
NeverHeardOfMe5-Oct-08 7:24
NeverHeardOfMe5-Oct-08 7:24 
QuestionImage JPG Handler Pin
RX Maverick5-Oct-08 6:05
RX Maverick5-Oct-08 6:05 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.