Click here to Skip to main content
15,891,473 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: avoid multiple instances of an application Pin
minhpc_bk6-Sep-06 14:20
minhpc_bk6-Sep-06 14:20 
QuestionDatagrid - how to avoid adding an item Pin
thowra6-Sep-06 6:36
thowra6-Sep-06 6:36 
AnswerRe: Datagrid - how to avoid adding an item Pin
minhpc_bk6-Sep-06 14:23
minhpc_bk6-Sep-06 14:23 
Questiondelete confirm in asp.net with vb.net 1.1 Pin
amaneet6-Sep-06 6:26
amaneet6-Sep-06 6:26 
AnswerRe: delete confirm in asp.net with vb.net 1.1 Pin
postmaster@programmingknowledge.com6-Sep-06 14:38
postmaster@programmingknowledge.com6-Sep-06 14:38 
QuestionGridView / ObjectDataSource problem [modified] Pin
Robin C6-Sep-06 5:53
Robin C6-Sep-06 5:53 
AnswerRe: GridView / ObjectDataSource problem Pin
minhpc_bk6-Sep-06 20:08
minhpc_bk6-Sep-06 20:08 
GeneralRe: GridView / ObjectDataSource problem Pin
Robin C7-Sep-06 11:12
Robin C7-Sep-06 11:12 
Thanks for the reply, though I don't see what is different about the what I am doing and my edit does not work...

<asp:repeater id="repCommunities" runat="server" datasourceid="odsCommunity" enableviewstate="false">
<ItemTemplate>
<asp:HiddenField ID="txtID" runat="server" Value='<%# Eval("community_id") %>' />
<asp:GridView ID="gvCommunity" runat="server" AutoGenerateColumns="False" DataKeyNames="delay_id" DataSourceID="odsDelay">
<Columns>
<asp:BoundField DataField="delay_id" HeaderText="delay_id" InsertVisible="False" ReadOnly="True" SortExpression="delay_id" />
<asp:BoundField DataField="delay_day" HeaderText="delay_day" SortExpression="delay_day" />
<asp:BoundField DataField="delay_creator" HeaderText="delay_creator" SortExpression="delay_creator" />
<asp:BoundField DataField="delay_date" HeaderText="delay_date" SortExpression="delay_date" />
<asp:BoundField DataField="community_id" HeaderText="community_id" SortExpression="community_id" />
<asp:BoundField DataField="delay_action" HeaderText="delay_action" SortExpression="delay_action" />
<asp:BoundField DataField="delay_lot" HeaderText="delay_lot" SortExpression="delay_lot" />
<asp:BoundField DataField="delay_reason" HeaderText="delay_reason" SortExpression="delay_reason" />
<asp:CommandField ShowEditButton="true" />
</Columns>
</asp:GridView>
<br />
<asp:ObjectDataSource ID="odsDelay" runat="server" OldValuesParameterFormatString="original_{0}" TypeName="daSQL" SelectMethod="GetDelaysByCommunityAndDateRange" UpdateMethod="UpdateDelayAction" DeleteMethod="DeleteCommunity" InsertMethod="InsertDelay">
<SelectParameters>
<asp:ControlParameter ControlID="txtID" PropertyName="Value" DefaultValue="1" Name="communityID" />
<asp:ControlParameter ControlID="txtFrom" PropertyName="Text" DefaultValue="" Name="from" />
<asp:ControlParameter ControlID="txtTo" PropertyName="Text" DefaultValue="" Name="to" />
</SelectParameters>
<UpdateParameters>
<asp:Parameter Name="delay_lot" Type="String" />
<asp:Parameter Name="delay_day" Type="Int32" />
<asp:Parameter Name="delay_reason" Type="String" />
<asp:Parameter Name="delay_action" Type="String" />
<asp:Parameter Name="original_delay_id" Type="Int32" />
</UpdateParameters>
<InsertParameters>
<asp:Parameter Name="lot" Type="String" />
<asp:Parameter Name="day" Type="Int32" />
<asp:Parameter Name="creator" Type="String" />
<asp:Parameter Name="reason" Type="String" />
<asp:Parameter Name="communityID" Type="Int32" />
</InsertParameters>
</asp:ObjectDataSource>
</ItemTemplate>
</asp:repeater>
<asp:objectdatasource id="odsCommunity" runat="server" oldvaluesparameterformatstring="original_{0}"
selectmethod="GetUpdatedCommunitiesByDateRange" typename="QuadrantTableAdapters.communityTableAdapter"
deletemethod="Delete" insertmethod="Insert" updatemethod="Update" enableviewstate="False">
<DeleteParameters>
<asp:Parameter Name="Original_community_id" Type="Int32" />
</DeleteParameters>
<UpdateParameters>
<asp:Parameter Name="community_name" Type="String" />
<asp:Parameter Name="community_active" Type="Boolean" />
<asp:Parameter Name="Original_community_id" Type="Int32" />
</UpdateParameters>
<InsertParameters>
<asp:Parameter Name="community_name" Type="String" />
<asp:Parameter Name="community_active" Type="Boolean" />
</InsertParameters>
<SelectParameters>
<asp:ControlParameter ControlID="txtFrom" Name="from" PropertyName="Text" Type="String" />
<asp:ControlParameter ControlID="txtTo" Name="to" PropertyName="Text" Type="String" />
<asp:ControlParameter ControlID="txtCommunity" Name="name" PropertyName="Text" Type="String" DefaultValue="%" />
</SelectParameters>
</asp:objectdatasource>
GeneralRe: GridView / ObjectDataSource problem Pin
minhpc_bk7-Sep-06 22:56
minhpc_bk7-Sep-06 22:56 
QuestionInfragistics ultrawebgrid Pin
shivarishxxxx6-Sep-06 4:17
shivarishxxxx6-Sep-06 4:17 
AnswerRe: Infragistics ultrawebgrid Pin
g00fyman6-Sep-06 4:43
g00fyman6-Sep-06 4:43 
GeneralRe: Infragistics ultrawebgrid Pin
shivarishxxxx6-Sep-06 5:05
shivarishxxxx6-Sep-06 5:05 
QuestionRuntimeTabstrip Control Pin
shivarishxxxx6-Sep-06 3:22
shivarishxxxx6-Sep-06 3:22 
AnswerRe: RuntimeTabstrip Control Pin
g00fyman6-Sep-06 3:50
g00fyman6-Sep-06 3:50 
GeneralRe: RuntimeTabstrip Control [modified] Pin
shivarishxxxx6-Sep-06 4:13
shivarishxxxx6-Sep-06 4:13 
GeneralRe: RuntimeTabstrip Control Pin
g00fyman6-Sep-06 4:41
g00fyman6-Sep-06 4:41 
QuestionAuthentication Problems Pin
HRiazi6-Sep-06 3:18
HRiazi6-Sep-06 3:18 
AnswerRe: Authentication Problems Pin
g00fyman6-Sep-06 4:49
g00fyman6-Sep-06 4:49 
AnswerAuthentication Problems Pin
Britney S. Morales6-Sep-06 11:03
Britney S. Morales6-Sep-06 11:03 
GeneralRe: Authentication Problems Pin
Not Active6-Sep-06 11:15
mentorNot Active6-Sep-06 11:15 
QuestionGof Design pattern Pin
Parwej Ahamad6-Sep-06 3:09
professionalParwej Ahamad6-Sep-06 3:09 
AnswerRe: Gof Design pattern Pin
Colin Angus Mackay6-Sep-06 3:15
Colin Angus Mackay6-Sep-06 3:15 
AnswerRe: Gof Design pattern Pin
g00fyman6-Sep-06 3:42
g00fyman6-Sep-06 3:42 
AnswerRe: Gof Design pattern Pin
Not Active6-Sep-06 6:50
mentorNot Active6-Sep-06 6:50 
GeneralRe: Gof Design pattern Pin
Parwej Ahamad6-Sep-06 21:12
professionalParwej Ahamad6-Sep-06 21:12 

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.