Click here to Skip to main content
15,919,245 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionSharing assemblies between a WebService and a client application Pin
Dario Solera10-Aug-06 7:47
Dario Solera10-Aug-06 7:47 
AnswerRe: Sharing assemblies between a WebService and a client application Pin
Naes10-Aug-06 18:41
Naes10-Aug-06 18:41 
GeneralRe: Sharing assemblies between a WebService and a client application Pin
Dario Solera10-Aug-06 20:24
Dario Solera10-Aug-06 20:24 
AnswerRe: Sharing assemblies between a WebService and a client application Pin
minhpc_bk10-Aug-06 23:44
minhpc_bk10-Aug-06 23:44 
QuestionBest technique to use dynamic "panels" for static content? Pin
Member 9610-Aug-06 7:37
Member 9610-Aug-06 7:37 
AnswerRe: Best technique to use dynamic "panels" for static content? Pin
Mike Ellison10-Aug-06 7:42
Mike Ellison10-Aug-06 7:42 
GeneralRe: Best technique to use dynamic "panels" for static content? Pin
Member 9610-Aug-06 7:50
Member 9610-Aug-06 7:50 
GeneralRe: Best technique to use dynamic "panels" for static content? Pin
Mike Ellison10-Aug-06 8:01
Mike Ellison10-Aug-06 8:01 
I'm not sure that's true. I think with a MultiView control, only the active View is sent to the user. I just did the following code as a test and can verify only the active View was sent.

<%@ Page Language="C#" %>

<script runat="server">
  
  void Page_Load(object o, EventArgs e)
  {
    
    // determine the displayed view by the querystring
    int index=0;

    if (Request.QueryString["view"] != null)
        index = int.Parse(Request.QueryString["view"]);
        
    mv1.ActiveViewIndex = index;        
        
        
  }
  
</script>

<html>
  <head>
    <title></title>
  </head>
  
  <body>
    <form runat="server">
  
        <asp:MultiView id="mv1" runat="server">
          
          <asp:View id="view0" runat="server">
            This is view0.
            <asp:TextBox id="txt0" runat="server" Text="View0" />
          </asp:View>
          
          <asp:View id="view1" runat="server">
            This is view1.
            <asp:TextBox id="txt1" runat="server" Text="View1" />
          </asp:View>
          
          <asp:View id="view2" runat="server">
            This is view2.
            <asp:TextBox id="txt2" runat="server" Text="View2" />
          </asp:View>

        </asp:MultiView>      
  
    </form>
  </body>
  
</html>

GeneralRe: Best technique to use dynamic "panels" for static content? Pin
Member 9610-Aug-06 10:30
Member 9610-Aug-06 10:30 
GeneralRe: Best technique to use dynamic "panels" for static content? Pin
Mike Ellison10-Aug-06 10:48
Mike Ellison10-Aug-06 10:48 
GeneralRe: Best technique to use dynamic &quot;panels&quot; for static content? [modified] Pin
Member 9610-Aug-06 10:53
Member 9610-Aug-06 10:53 
AnswerRe: Best technique to use dynamic "panels" for static content? Pin
Jon Sagara10-Aug-06 9:24
Jon Sagara10-Aug-06 9:24 
GeneralRe: Best technique to use dynamic "panels" for static content? Pin
Member 9610-Aug-06 10:27
Member 9610-Aug-06 10:27 
GeneralRe: Best technique to use dynamic "panels" for static content? Pin
Jon Sagara10-Aug-06 10:37
Jon Sagara10-Aug-06 10:37 
GeneralRe: Best technique to use dynamic "panels" for static content? Pin
Member 9610-Aug-06 10:52
Member 9610-Aug-06 10:52 
AnswerRe: Best technique to use dynamic "panels" for static content? Pin
Not Active10-Aug-06 9:30
mentorNot Active10-Aug-06 9:30 
GeneralRe: Best technique to use dynamic "panels" for static content? Pin
Member 9610-Aug-06 10:31
Member 9610-Aug-06 10:31 
QuestionGet Date Pin
mcgann10-Aug-06 7:07
mcgann10-Aug-06 7:07 
AnswerRe: Get Date Pin
Mike Ellison10-Aug-06 7:41
Mike Ellison10-Aug-06 7:41 
QuestionMaster page and unique page titles Pin
munklefish10-Aug-06 4:24
munklefish10-Aug-06 4:24 
AnswerRe: Master page and unique page titles Pin
Ryomin10-Aug-06 4:44
professionalRyomin10-Aug-06 4:44 
GeneralRe: Master page and unique page titles Pin
munklefish13-Aug-06 10:12
munklefish13-Aug-06 10:12 
QuestionAmazon Pin
kjosh10-Aug-06 4:23
kjosh10-Aug-06 4:23 
QuestionChanging the name of the resource in the Response [modified] Pin
Dario Solera10-Aug-06 4:12
Dario Solera10-Aug-06 4:12 
QuestionColor Chooser on web pages Pin
Naveed Kamboh10-Aug-06 4:11
Naveed Kamboh10-Aug-06 4:11 

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.