Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
S

Spoks_ST

@Spoks_ST
About
Posts
12
Topics
7
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Need help with UserControl events
    S Spoks_ST

    I have custom usercontrol with two events. First event triggers updatepanel changes (works fine). Second event must reload entire page. <ucs:ucMM ID="ucMMa" runat="server" OnLogOut="OnLogOut" OnClick="OnMMClick" /> <asp:UpdatePanel ID="upMain" runat="server" ChildrenAsTriggers="False" EnableViewState="False" RenderMode="Inline" UpdateMode="Conditional"> <Triggers> <asp:AsyncPostBackTrigger ControlID="ucMMa" EventName="Click" /> </Triggers> ---------- (if this is set to simple postback all works fine, but i need async here) <ContentTemplate> <asp:MultiView runat="server" ActiveViewIndex="0" ID="mvMain"> <asp:View ID="View3" runat="server">aa</asp:View> <asp:View ID="View4" runat="server">bb</asp:View> <asp:View ID="View5" runat="server">cc</asp:View> <asp:View ID="View6" runat="server">vv</asp:View> </asp:MultiView> </ContentTemplate> </asp:UpdatePanel>

    It`s nothing to wory before something happen and when it happents it`s alredy to late to wory! :)

    Web Development sysadmin help

  • Modifying URL using java script
    S Spoks_ST

    My suggestion would be - use web service, to get data to client without postback.

    It`s nothing to wory before something happen and when it happents it`s alredy to late to wory! :)

    Web Development java javascript database sysadmin tools

  • Question about event validation
    S Spoks_ST

    I have two server controls on page, both have buttons what must postback. One control uses validation and work ok. Other what should not validate input causes error: Invalid postback or callback argument. Event validation is enabled using <pages enableEventValidation="true"/> in configuration or <%@ Page EnableEventValidation="true" %> in a page. For security purposes, this feature verifies that arguments to postback or callback events originate from the server control that originally rendered them. If the data is valid and expected, use the ClientScriptManager.RegisterForEventValidation method in order to register the postback or callback data for validation. I`ve tried to set CausesValidation="False", but it wont help :( Any suggestions? Sorry for my bad english :(

    It`s nothing to wory before something happen and when it happents it`s alredy to late to wory! :)

    Web Development help question sysadmin security workspace

  • Help with multiview control and AJAX
    S Spoks_ST

    Found what caused problem. I forgot to add scriptmanager as triger to updatepanel, however, why there is no hint everywhere i`we looked about that. :(

    It`s nothing to wory before something happen and when it happents it`s alredy to late to wory! :)

    ASP.NET question help

  • Help with multiview control and AJAX
    S Spoks_ST

    How do I change active view when ScriptManagers OnNavigate event fires? On button control click all is ok, however, when user clicks browsers back button fires OnNavigate. It allows to change label.text property and it displays correct, but multiview shows old view.

    It`s nothing to wory before something happen and when it happents it`s alredy to late to wory! :)

    Web Development question help

  • Help with multiview control and AJAX
    S Spoks_ST

    How do I change active view when ScriptManagers OnNavigate event fires? On button control click all is ok, however, when user clicks browsers back button fires OnNavigate. It allows to change label.text property and it displays correct, but multiview shows old view :(

    It`s nothing to wory before something happen and when it happents it`s alredy to late to wory! :)

    ASP.NET question help

  • Confused of dynamically added controls on AJAX page
    S Spoks_ST

    I know that :( But I do not care about viewstate or Postback, all controls that should talk to server are in main page, not in update panel, only thing that do not work as wanted is ScriptManagers OnNavigate event. It fires too late. I need that event to handle f5, back and forward. If controls are added as fallows: protected void mi1_click(object sender, EventArgs e) { test(); } all is ok :( But in this case: public void OnNavigateHistory(object sender, HistoryEventArgs e) { test(); } it will not work :( void test() { //This line works fine in both cases. It sets couple of properties, as label texts and session variables. set_title("Test title"); //Instead of button I need my usercontrol, but even button will not show up. Button btn = new Button(); btn.Text = "I bitīt matos!!!!!!!!!!!"; PHolder.Controls.Clear(); PHolder.Controls.Add(btn); sm.AddHistoryPoint("aa", "bb"); }

    It`s nothing to wory before something happen and when it happents it`s alredy to late to wory! :)

    modified on Friday, July 31, 2009 3:15 PM

    ASP.NET

  • Confused of dynamically added controls on AJAX page
    S Spoks_ST

    Sorry for bad English, as it`s only 3rd language... In every post regarding adding controls, it is written that I should add them OnInit event, however at that time, I do no know, witch control I must add. :( If I add them on Button click, all shows as planed, but if I add them at ScriptManager OnNavigate event, they do not show up :(

    It`s nothing to wory before something happen and when it happents it`s alredy to late to wory! :)

    ASP.NET

  • Need help on interface defination
    S Spoks_ST

    In most samples there is only simple solutions where Operationcontract funcions return DataContract interfaces. What should I do to return other ServiceContract??????

    It`s nothing to wory before something happen and when it happents it`s alredy to late to wory! :)

    WCF and WF help question

  • [Message Deleted] [modified]
    S Spoks_ST

    iDataClient is proxy class created by VS 2008. clsData on client side is my helper class that calls methods on proxy class. Problem was, that I have one GUI for local data and remote data, and I do not want to write allmoast same code twice, as there is much other work to be done and I work alone.

    It`s nothing to wory before something happen and when it happents it`s alredy to late to wory! :)

    WCF and WF tutorial question

  • [Message Deleted] [modified]
    S Spoks_ST

    I`ve tried create another class on client side that implements the same interface and it worked, however is this the only way? internal class clsSData:iData { iDataClient pData; internal clsSData() { pData = new iDataClient("data", "net.tcp://localhost:1234"); } #region iData Members public int UID() { return pData.UID(); } #endregion }

    It`s nothing to wory before something happen and when it happents it`s alredy to late to wory! :)

    WCF and WF tutorial question

  • [Message Deleted] [modified]
    S Spoks_ST

    How to delete entire thread not only message?????

    modified on Friday, March 27, 2009 5:42 PM

    WCF and WF tutorial question
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups