Click here to Skip to main content
15,921,793 members
Home / Discussions / ASP.NET
   

ASP.NET

 
Questionerror when trying to run application from the remote machine Pin
Dhyanga5-Oct-07 0:56
Dhyanga5-Oct-07 0:56 
AnswerRe: error when trying to run application from the remote machine Pin
Guffa5-Oct-07 1:43
Guffa5-Oct-07 1:43 
GeneralRe: error when trying to run application from the remote machine Pin
Dhyanga6-Oct-07 20:13
Dhyanga6-Oct-07 20:13 
AnswerRe: error when trying to run application from the remote machine Pin
Guffa7-Oct-07 1:22
Guffa7-Oct-07 1:22 
GeneralRe: error when trying to run application from the remote machine Pin
Dhyanga7-Oct-07 19:24
Dhyanga7-Oct-07 19:24 
AnswerRe: error when trying to run application from the remote machine Pin
sanchet5-Oct-07 2:01
sanchet5-Oct-07 2:01 
GeneralRe: error when trying to run application from the remote machine Pin
Dhyanga6-Oct-07 20:05
Dhyanga6-Oct-07 20:05 
QuestionSorting in Repetor With Viewstate Disabled Pin
Tiger4565-Oct-07 0:41
Tiger4565-Oct-07 0:41 
Hai

<asp:Repeater ID="Repeater1" runat="server" OnItemDataBound="Repeater1_ItemDataBound" EnableViewState="false" ><br />
          <HeaderTemplate><br />
              <asp:LinkButton ID="lnkID" runat="server" EnableViewState="true" CommandName="Sort" CommandArgument="ID" OnCommand="LnkButton_Command" >LinkButton  </asp:LinkButton><br />
                   <br />
              <asp:LinkButton ID="lnkNmae" runat="server"  EnableViewState="true" CausesValidation="true" CommandName="Sort" CommandArgument="Name" OnCommand="LnkButton_Command" >LinkButton</asp:LinkButton><br />
              <br /><br />
          </HeaderTemplate><br />
          <ItemTemplate><br />
            <%#  Eval("ID") %>      <%#  Eval("ID") %><br />
          </ItemTemplate><br />
          <SeparatorTemplate><br />
              <br /><br />
          </SeparatorTemplate><br />
      </asp:Repeater><br />
protected void LnkButton_Command(object sender, CommandEventArgs e)<br />
  {<br />
 <br />
      Response.Write(e.CommandName);<br />
      Response.Write("<BR>");<br />
      Response.Write(e.CommandArgument);<br />
  }

With this code i am creating a Sort facility in a repeator control for which i have added a in the header template and map the functionality to the header.
<asp:LinkButton ID="lnkNmae" runat="server" EnableViewState="true" CausesValidation="true" CommandName="Sort" CommandArgument="Name" OnCommand="LnkButton_Command" >LinkButton</asp:LinkButton>
Everything works cool up to this step.When i disabled the viewstate of Repeater 'LnkButton_Command' event is not fring. Is there any way todisable the parentcontrol view state and enable child view state.
AnswerRe: Sorting in Repetor With Viewstate Disabled Pin
Christian Graus5-Oct-07 0:43
protectorChristian Graus5-Oct-07 0:43 
GeneralRe: Sorting in Repetor With Viewstate Disabled Pin
Tiger4565-Oct-07 1:11
Tiger4565-Oct-07 1:11 
GeneralRe: Sorting in Repetor With Viewstate Disabled Pin
Christian Graus5-Oct-07 1:17
protectorChristian Graus5-Oct-07 1:17 
GeneralRe: Sorting in Repetor With Viewstate Disabled Pin
Tiger4565-Oct-07 5:24
Tiger4565-Oct-07 5:24 
QuestionDisplaying the images from the Database Pin
.NET- India 5-Oct-07 0:32
.NET- India 5-Oct-07 0:32 
AnswerRe: Displaying the images from the Database Pin
Christian Graus5-Oct-07 0:37
protectorChristian Graus5-Oct-07 0:37 
GeneralRe: Displaying the images from the Database Pin
.NET- India 5-Oct-07 1:28
.NET- India 5-Oct-07 1:28 
GeneralRe: Displaying the images from the Database Pin
Christian Graus5-Oct-07 1:33
protectorChristian Graus5-Oct-07 1:33 
QuestionTrying to attach db's Pin
bhattiprolu5-Oct-07 0:29
bhattiprolu5-Oct-07 0:29 
AnswerRe: Trying to attach db's Pin
Paras Kaneriya5-Oct-07 0:30
Paras Kaneriya5-Oct-07 0:30 
GeneralRe: Trying to attach db's Pin
bhattiprolu5-Oct-07 0:41
bhattiprolu5-Oct-07 0:41 
GeneralRe: Trying to attach db's Pin
Christian Graus5-Oct-07 0:47
protectorChristian Graus5-Oct-07 0:47 
GeneralRe: Trying to attach db's Pin
bhattiprolu5-Oct-07 0:50
bhattiprolu5-Oct-07 0:50 
GeneralRe: Trying to attach db's Pin
Christian Graus5-Oct-07 1:05
protectorChristian Graus5-Oct-07 1:05 
GeneralRe: Trying to attach db's Pin
bhattiprolu5-Oct-07 1:41
bhattiprolu5-Oct-07 1:41 
AnswerRe: Trying to attach db's Pin
Christian Graus5-Oct-07 0:31
protectorChristian Graus5-Oct-07 0:31 
QuestionResize textboxes Pin
Zoltan Aszalos5-Oct-07 0:27
Zoltan Aszalos5-Oct-07 0:27 

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.