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
V

Vijayitsb

@Vijayitsb
About
Posts
34
Topics
16
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • 'top.screenLeft' is null or not an object [modified]
    V Vijayitsb

    I am using scriptManager and JQuery in a same page. when i click anywhere on that page i am getting following error. Line: 5959 Error: 'top.screenLeft' is null or not an object When i debug this its pointing to following code in scriptResource.axd var offsetL = w.screenLeft - top.screenLeft - top.document.documentElement.scrollLeft + 2; please give solution for this.

    Cheers..! Vijay s

    modified on Monday, September 14, 2009 2:22 AM

    ASP.NET javascript debugging help

  • Iframe Customized scrollbar
    V Vijayitsb

    I am loading another website in my iframe and i dont know how to apply customized scrollbar for that iframe.How can i apply ? pls help me

    Cheers..! Vijay s

    ASP.NET question help tutorial

  • Problem in typecasting date in javascript
    V Vijayitsb

    You have to assign date like this var systemDate=new Date(year,month,date); eg: var systemDate=new Date(2009,4,18);

    Cheers..! Vijay s

    ASP.NET javascript help tutorial question

  • How to use multiple class for Select Control
    V Vijayitsb

    Hi, I am using HTML select control and i want to display first option in italics style, other options are in normal font-style. How can i do this ?

    Cheers..! Vijay s

    ASP.NET question html tutorial

  • The State Information is invalid for this page and might be corrupted.
    V Vijayitsb

    I am loading aspx page with in div tag of another aspx and im using scriptmanager.First time im loading this in page load event and its loading fine then i'm loading Same page by changing value in dropdown here i got this Error The State Information is invalid for this page and might be corrupted.. I dont know why this error occur and how to fix this. Please help me...

    Cheers..! Vijay s

    ASP.NET help tutorial

  • Loading Xml using Javascript -Safari Browser
    V Vijayitsb

    I am Loading Xml file using javascript. Its working fine in IE and Firefox but Its not working safari. This is My code. if( window.ActiveXObject && /Win/.test(navigator.userAgent) ) { LoadXml = new ActiveXObject("Msxml.DOMDocument"); LoadXml.async = false; LoadXml.onreadystatechange = function () { if (LoadXml.readyState == 4) ManipulateXML(Id); } LoadXml.load("../../Common_Inc/link.xml"); } else if( document.implementation && document.implementation.createDocument ) { LoadXml = document.implementation.createDocument("","",null); //LoadXml = new ActiveXObject("Microsoft.XMLHTTP"); LoadXml.async = false; var loaded = LoadXml.load("../../Common_Inc/link.xml"); moz=1; if (loaded) { ManipulateXML(Id); } //alert("Test13"); } else { alert("Your browser can\'t handle this script"); return; } Im getting Error in safari Browser while loading the Xml file. Do u know any Alternate methods which is working in all browser ?

    Cheers..! Vijay s

    Web Development javascript tools xml help question

  • How to access HTML Controls property in codebehind
    V Vijayitsb

    Hi, You can declare div tag as Server control using runat attribute of div tag then only you can access it from codebehind To block div tag use this code in codebehind divId.Style.Add("display","block")

    Cheers..! Vijay s

    ASP.NET html help tutorial

  • write file
    V Vijayitsb

    Hi I saw your article..But Im asking about filehandling concept. Is it possible to insert(Not Append) a text in to file ?

    Cheers..! Vijay s

    ASP.NET question

  • Calendar Problem
    V Vijayitsb

    Can you send design code..


    Cheers..! Vijay s

    ASP.NET css help tutorial question

  • write file
    V Vijayitsb

    Hi Friends I want to search the some text in a file and insert some words next line of that searched text,Im using Streamwriter class but its append.How I can do this ?.Do u have any idea


    Cheers..! Vijay s

    ASP.NET question

  • back button loading the page
    V Vijayitsb

    After authenticate You can redirect the page using following code FormsAuthentication.RedirectFromLoginPage(Login1.UserName, true); and Logout uisng FormsAuthentication.SignOut();


    Cheers..! Vijay s

    ASP.NET security help question

  • Show image dynamically
    V Vijayitsb

    Hi, I am showing image dynamacally.I got image path from database. After I changed the image in that path with same name but its showing old one.once i click refresh button of browser its showing updated image. (I think first time browser getting the image from temporary internet file).Do u have any Idea ?

    Thank & Regards Vijay s

    ASP.NET database question

  • Identifying the failed records??? [modified]
    V Vijayitsb

    Hi, You can use this logic. I hope that this may help you int b = 0; string ew; for (int i = 0; i <= 5; i++) { try { if(b==i) ew=Session["Good"].ToString(); Response.Write("pass" + i); } catch { Response.Write("Failed" + i); } }

    Cheers..! Vijay s

    ASP.NET csharp tutorial asp-net help question

  • how can i clear gridview
    V Vijayitsb

    if you delete row use this code. dt.Rows[Index].Delete() Or if u want delete data dt.Rows[Index]["ColumnName"] = null;

    Thank & Regards Vijay s

    ASP.NET question

  • how can i clear gridview
    V Vijayitsb

    So you are not using DB.How many DataTable you are using ? Can you send your Code..?

    Thank & Regards Vijay s

    ASP.NET question

  • how can i clear gridview
    V Vijayitsb

    You want to clear and Fill the grid.You want these two process in two different events or only one event.

    Cheers..! Vijay s

    ASP.NET question

  • CheckBox Problem
    V Vijayitsb

    Problem is my side.I only assigned "false" to that checkbox for some other reason in page load event.I dint notice that.thank you

    Thank & Regards Vijay s

    ASP.NET help

  • CheckBox Problem
    V Vijayitsb

    Thanks for reply,I got the solution.

    Thank & Regards Vijay s

    ASP.NET help

  • CheckBox Problem
    V Vijayitsb

    I am Using this simple code if (chkA.Checked == true) gType = "A,"; if (chkC.Checked == true) gType += "C,"; if (chkH.Checked == true) gType += "H,"; // gType = gType.Substring(0, gType.Length - 1);

    Thank & Regards Vijay s

    ASP.NET help

  • CheckBox Problem
    V Vijayitsb

    I am using CheckBox in my web form.But checked status always shownig false, Even I select that checkbox and I am also using Master Page in my Webform Do you have any Idea.

    Thank & Regards Vijay s

    ASP.NET help
  • Login

  • Don't have an account? Register

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