Click here to Skip to main content
16,020,811 members

Comments by Sagar Haridas Shinde (Top 6 by date)

Sagar Haridas Shinde 14-Apr-16 8:42am View    
check control using "Document Outline". View > Other Windows > Document Outline
Sagar Haridas Shinde 7-Apr-16 5:01am View    
Call Javascript on mouseover and mouseleave for ex. onmouseover="showstuff(this.id)" and onmouseleave="hidestuff(this.id)" also also we can use "document.getElementById ("your_control_id");" to get your element Id
Sagar Haridas Shinde 1-Apr-16 8:42am View    
Use div coding structure with floating property for ex -
<div style="float:Left;">Button</div>
<div style="float:Left;">Label</div>
<div style="clear:both;">Label</div>
Sagar Haridas Shinde 31-Mar-16 8:13am View    
Give Condition in for loop and according to this assign different two images for particular cell.
Sagar Haridas Shinde 23-Oct-15 6:27am View    
you are redirecting to same page again and again, so it created a loop

make sure that only redirected to a different page

if(!HttpContext.Current.Request.Path.EndsWith("PageName.aspx", StringComparison.InvariantCultureIgnoreCase))
Response.Redirect("PageName.aspx");

or


Try adding this to your web.config file:




http://stackoverflow.com/questions/15894254/how-to-solve-redirect-loop