Click here to Skip to main content
15,892,768 members
Home / Discussions / ASP.NET
   

ASP.NET

 
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 
AnswerRe: Image JPG Handler Pin
NeverHeardOfMe5-Oct-08 6:51
NeverHeardOfMe5-Oct-08 6:51 
QuestionPurging ASP.NET Cache within a HttpModule Pin
kentietjen5-Oct-08 4:35
kentietjen5-Oct-08 4:35 
QuestionSpecify the type of calendar in Sharepoint Pin
hdv2125-Oct-08 2:12
hdv2125-Oct-08 2:12 
QuestionHow do I use delegates to pass information around between web controls on a page and a user control (ascx file) Pin
Tina P4-Oct-08 17:30
Tina P4-Oct-08 17:30 
AnswerRe: How do I use delegates to pass information around between web controls on a page and a user control (ascx file) Pin
Jaffer Mumtaz4-Oct-08 21:20
Jaffer Mumtaz4-Oct-08 21:20 
QuestionUpdate problem? Pin
omegazafer4-Oct-08 11:42
omegazafer4-Oct-08 11:42 
AnswerRe: Update problem? Pin
Jaffer Mumtaz4-Oct-08 20:55
Jaffer Mumtaz4-Oct-08 20:55 
QuestionInteraction between the page level controls and User Controls in VS 2008 Pin
Tina P4-Oct-08 10:14
Tina P4-Oct-08 10:14 

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.