abomnkv

Stories kicked by abomnkv

Broken Authentication and Session Management(interviews.dotnetthread.com)

submitted by abomnkvabomnkv(250) 2 years, 1 month ago

Best Practices for ASP.NET Authentications and Session Management. read more...

add a comment |category: |Views: 69

tags: another

SharePoint Coding Practices(interviews.dotnetthread.com)

submitted by abomnkvabomnkv(250) 2 years, 2 months ago

disposing objects in sharepoint read more...

add a comment |category: |Views: 9

tags: another

MS Excel like Ceiling function in c#(interviews.dotnetthread.com)

submitted by abomnkvabomnkv(250) 2 years, 3 months ago

- Excel Ceiling function returns a number rounded up based on a multiple of significance. - Example Ceiling(41.88, 10) will give 50 and Ceiling of 41.88 to 5 will give 45. read more...

add a comment |category: |Views: 34

tags: another

MS Excel like Round function in c#(interviews.dotnetthread.com)

submitted by abomnkvabomnkv(250) 2 years, 3 months ago

1. Excel Round function behaves differently when we compare with C# Math.Round() method. 2. Also Excel Round allows Round to -1, -2... example Round(121,-1) = 120. This is not allowed in Math.Round() read more...

add a comment |category: |Views: 16

tags: another

Solution: How to change css class for an element in jquery?(interviews.dotnetthread.com)

submitted by abomnkvabomnkv(250) 2 years, 6 months ago

In order to change the CSS class applied to an element using jQuery we can use methods like addClass() and .removeClass() read more...

add a comment |category: |Views: 8

tags: another

Visual Studio 2010 and .NET 4.0 Beta 2 Released(interviews.dotnetthread.com)

submitted by abomnkvabomnkv(250) 2 years, 7 months ago

Visual Studio 2010 and .Net Framework 4.0 Beta 2 is released this wednesday. This is available for download in MSDN here http://go.microsoft.com/fwlink/?LinkID=151797 read more...

add a comment |category: |Views: 4

tags: another

How to do encryption and decryption of sensitive data when passed as q(interviews.dotnetthread.com)

submitted by abomnkvabomnkv(250) 2 years, 7 months ago

When we are passing any sensitive data like credit card number or password then we need to do encryption for the respective parameters that means for providing security. read more...

add a comment |category: |Views: 7

tags: another

JSON Serialization in VS 2008(interviews.dotnetthread.com)

submitted by abomnkvabomnkv(250) 2 years, 7 months ago

Say we need to convert serialize C# object to JSON string and transfer that to client side to be used in Javascript. DataContact attribute is added to a class and DataMember attribute is added for all members that need be serialized. read more...

add a comment |category: |Views: 12

tags: another

$(document).ready handler will not be fired on asynchronous postback(interviews.dotnetthread.com)

submitted by abomnkvabomnkv(250) 2 years, 10 months ago

Alternative: $(document).ready handler will not be fired on asynchronous postback read more...

add a comment |category: |Views: 26

tags: another

How to call multiple Javascript methods on load using onload hander(interviews.dotnetthread.com)

submitted by abomnkvabomnkv(250) 3 years ago

We know that when we cannot assign mutilple functions to onload handler in javascript. It will just ovveride the previous function. In order to set mutliple functions we need to consider Array and add all methods to that array.(functions can be added in Page or Usercontrol). See example here.... read more...

add a comment |category: |Views: 27

tags: another

Overloading and Overriding - Method Vs Author(interviews.dotnetthread.com)

submitted by abomnkvabomnkv(250) 3 years, 1 month ago

A method overriden has exactly the same skeleton as the method in the parent class. Same Access modifier, same type of return value, same name and same arguments. Only thing that can be changed is the inner content of the method. Method: OK Boss !! I won't mind if you change my main code , your wish ... Author: Hey method , don't take it to heart,we just do it only when we inhert and override a method, only when its required. read more...

add a comment |category: |Views: 9

tags: another

Moving VIEWSTATE and other hidden fields to the bottom of the page in (interviews.dotnetthread.com)

submitted by abomnkvabomnkv(250) 3 years, 1 month ago

As we know that state of all ASP.NET controls is maintained __VIEWSTATE hidden field in encrypted format. By default this _VIEWSTATE HTML hidden field will be rendered at the top inside body tag (just below form tag). If we have lot of control data to be stored in ViewState then length of the viewstate will be more hence page will take time to load and also reduces rank in search engine as all the junk will be loaded at the top of actual content. So to make web page more search engine friendly and to make page render faster we may wish to move this __VIEWSTATE to the bottom of the page. read more...

add a comment |category: |Views: 61

tags: another

What is the use of MaintainScrollPositionOnPostBack property of a aspx(interviews.dotnetthread.com)

submitted by abomnkvabomnkv(250) 3 years, 2 months ago

MaintainScrollPositionOnPostBack property for Page directive is used to get or set a value(true or false) whether to return the user to the same scroll position in the browser after postback. read more...

add a comment |category: |Views: 7

tags: another

Browser back button support for Gridview paging, sorting using jQuery(interviews.dotnetthread.com)

submitted by abomnkvabomnkv(250) 3 years, 2 months ago

The Article will demonstrate how to enable browser back and forward button support for GridView paging and sorting in ASP.NET AJAX using jQuery History plugin. jQuery is popular and widely used Javascript library and will take care of browser compatibility for our script. read more...

add a comment |category: |Views: 251

tags: another

Calling Page Methods and Web Services directly using jQuery.(interviews.dotnetthread.com)

submitted by abomnkvabomnkv(250) 3 years, 2 months ago

For calling Ajax Page Methods from Javascript using jQuery use the below jQuery method to set type, url, input data empty braces if no input data is available to avoid errors. Data transfer will done in JSON format. read more...

add a comment |category: |Views: 56

tags: another

How to get jQuery Intellisense in Visual Studio 2008 with SP1?(interviews.dotnetthread.com)

submitted by abomnkvabomnkv(250) 3 years, 3 months ago

To get jQuery intellisense in Visula Studio you need to do the following. read more...

add a comment |category: |Views: 19

tags: another