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

Sundar_R

@Sundar_R
About
Posts
44
Topics
8
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • SOAPOutputFilter with SOAPExtension
    S Sundar_R

    Hi, I am trying to implement usertoken authentication for my webservice using WSE. My client and webservices already have soapextension incorporated at either ends. The problem is my SOAPOutputFilter is not getting called at the client and the call is not going to the server itself. I get the following error message "The input was not a valid SOAP message." The code works fine with SOAPExtension alone and WSE alone. But combining these two gives the above error. Can anyone please help me with this. Thanks, R.Sundar

    ASP.NET help wcf sysadmin security xml

  • Unable to pass values through soapcontext
    S Sundar_R

    I am trying to pass values through soapcontext to my webservice I am implementing my own customfilters (SoapInputFilter,SoapOutputFilter) I am adding values to the soapcontext in the SoapOutputFilter of my application and i am trying to read them in the SoapInputFilter of my webservice, but it return null I have made all necessary configuration in my web.config file <microsoft.web.services> <filters> <!-- note that you can add custom filters asymmetrically, that is, just for output or just for input --> <input> <add type="InPutFilters,CustomFilters"/> </input> <output> <add type="OutPutFilters,CustomFilters"/> </output> </filters> </microsoft.web.services> What may be the problem ?

    ASP.NET help question workspace

  • loading parent window using javascript
    S Sundar_R

    http://msdn.microsoft.com/en-us/library/xsbfdd8c.aspx[Check this^] http://msdn.microsoft.com/en-us/library/hdxfb6cy.aspx[and this^]

    ASP.NET java javascript css tools

  • loading parent window using javascript
    S Sundar_R

    Caching may be the solution for your problem

    ASP.NET java javascript css tools

  • loading parent window using javascript
    S Sundar_R

    What are the controls that are getting cleared ?

    ASP.NET java javascript css tools

  • Adding Textbox dynamically when the value of Drop down list changes
    S Sundar_R

    Think textbox doesnt use viewstate for maintaining the text across postbacks Even if the viewstate is false,text will be still maintained during postbacks Correct me if i am wrong.

    ASP.NET csharp asp-net help

  • Call a server function from javascript
    S Sundar_R

    document.forms[0].submit() isn't this a simplier way ?

    ASP.NET question csharp javascript sysadmin tools

  • I have doubt regarding MasterPages & Content Pages...
    S Sundar_R

    you can either read it this way document.getElementById("<%=Button1.ClientID%>") or set the master page id in page load of master page like this this.ID = "MyID"; then your control id will be MyID_contentplaceholderid_controlid also keep in mind that clientid wont work in js files

    ASP.NET help design

  • Set Input Radio to Checked in GridView
    S Sundar_R

    you need to replace your html radio button with asp radio button <asp:RadioButton ID="gvradio1" runat="server" />

    ASP.NET help

  • Tooltip on gridview, how to ?
    S Sundar_R

    Did you try setting the tooltip of the labels in rowdatabound method ?

    ASP.NET database help tutorial question

  • create that aspx page in the runtime
    S Sundar_R

    Check out codedom compiler namespace http://msdn.microsoft.com/en-us/library/y2k85ax6.aspx[^] You can dynamically create and compile assemblies at runtime.

    ASP.NET question tutorial

  • how to know when mouse is clicked on gridview's column header.
    S Sundar_R

    Gridview column headers are nothing but THs in the html generated. In the body load you have to put that code which will loop through the list of Ths in the document and associate onclick event for all of them.

    ASP.NET csharp asp-net tutorial

  • RequiredFieldValidator is not firing?
    S Sundar_R

    Is the CausesValidation property for the textbox set to true ?

    ASP.NET help question

  • disabling back button,
    S Sundar_R

    Sorry, i am not getting you. Can you paste the code here ?

    ASP.NET csharp help question

  • How the UpdateProgress controls should not fire when the list index is -1?
    S Sundar_R

    Give an id for the span say "spanProgress" Add handlers for beginrequest and endrequest Sys.WebForms.PageRequestManager.getInstance().add_beginRequest(onBeginRequest); Sys.WebForms.PageRequestManager.getInstance().add_endRequest(onEndRequest); function onBeginRequest() { //add your logic for checking SelectedIndex == -1 and then hide the span //by setting document.getElementById("spanProgress").style.display="none"; } function onEndRequest() { //enable the span here }

    ASP.NET database sysadmin help question announcement

  • disabling back button,
    S Sundar_R

    Hope you are talking about the browser back button. You cannot disable the back button if the browser instance is opened and your URL is typed in the address bar. However you have control over the window which you are opening from your code. So the only way to solve your problem is to have a default startup page in which you have to do a opendialog for your homepage and pass the arguments disbaling the menu bars and titlebars.

    ASP.NET csharp help question

  • how to know when mouse is clicked on gridview's column header.
    S Sundar_R

    Simpler work around for this is var vTh = document.getElementsByTagName("th"); for(var i=0;i<vTh.length;i++) { vTh[i].onclick=yourmethod; } But make sure that your html doesn't contain anyother THs, if so add your own logic to restrict it inside the for loop.

    ASP.NET csharp asp-net tutorial

  • Protect a webpage
    S Sundar_R

    You can disable the menubars and tool bars using opendialog method. If i were you, i would create a new startup page and use opendialog to launch the home page diabling the menu and tool bars.

    ASP.NET csharp javascript asp-net

  • Porblem In Retrieving Label Text
    S Sundar_R

    Which property did you check ? Is the changed text getting reflected in UI ?

    ASP.NET help java tools

  • cache aspx page per user
    S Sundar_R

    Simple way is to use ASP.NET_SessionId cookie. Try using VaryByHeader="ASP.NET_SessionId".

    ASP.NET 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