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

VanithaVasu

@VanithaVasu
About
Posts
59
Topics
32
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • How to open link in New Tab in the Main browser
    V VanithaVasu

    In Asp.net 2.0 webapplication how to create a new tab on link button clicked like how firefox browsers does. It should open in any browsers when i run my asp.net 2.0 web application. Is there any solution?

    VanithaVasu

    ASP.NET csharp asp-net tutorial question

  • How to index and Search the text in the image
    V VanithaVasu

    I am able to index any type of images but it indexes the type name only. I want to index all the text on the image and also i want to get searche the image thru full text search. How this task id possible. I am trying thru dtsearch 7.4 Is there any solution for this problem?

    VanithaVasu

    IT & Infrastructure database help tutorial question

  • Block iframe inside update panel
    V VanithaVasu

    I am using all the controls in the update panel including the iframe and ajaxToolkit:ModalPopupExtender. On button click i block the whole page using javascript and display ajaxToolkit:ModalPopupExtender. Everything is doing fine. But the iframe which is in page inside update panel is not getting blocked. Instead it is overlapping the ajaxToolkit:ModalPopupExtender. Did anybody know the solution.

    VanithaVasu

    ASP.NET javascript announcement

  • Footer Template controls in Datalist
    V VanithaVasu

    I am using my own image in the image button from toolbox.

    VanithaVasu

    ASP.NET tutorial

  • Footer Template controls in Datalist
    V VanithaVasu

    How to make visible - true or false and Enable - true or false for the controls inside the footer template of a datalist dynamically. I have two buttons for paging in the footer one for Previous and other for Next . If the last page is true in datalist paging i should change the button to visible false. Can i have a piece of code.

    VanithaVasu

    ASP.NET tutorial

  • Mapping another systems
    V VanithaVasu

    I want to access a folder from another system and i have used the ip address to map. But i am unable to access the folder from my system. I have used the code like string Path="http://172.16.3.65/CustomPub-XML/CommomIndexes/CuPubIndex"; Does anybody know the solution. Here the CustomPub-XML is a web shared folder and inside that i have two folders.

    VanithaVasu

    ASP.NET xml

  • [Message Deleted]
    V VanithaVasu

    I don't have any Idea in Vb. But in C# For ex: if we want our string to diaplay like - xml version="1.0" then we have to code like -- xml version= "\" 1.0 \"". So here you will get the output as: xml version="1.0"

    VanithaVasu

    ASP.NET

  • multiple selection
    V VanithaVasu

    Set the Selection Mode property to ' Multiple ' and then u can select multiple item by pressing Ctrl Key

    VanithaVasu

    ASP.NET tutorial

  • check with browser
    V VanithaVasu

    yes. First i want to check whether it is enabled or disabled and if it is disabled i have to enable the javascript.

    VanithaVasu

    ASP.NET csharp javascript asp-net help question

  • RequiredFieldValidator Problem
    V VanithaVasu

    For the cancel and Reset button u can set the cause validation property to false so that when u click these button the required field validator will not be checked.By default cause validation property for all buttons will be set to true. So we have to change it. And for insert button the only way is you have to alternatively visible true or false, for the required field validator.

    VanithaVasu

    ASP.NET help question

  • check with browser
    V VanithaVasu

    Hai, In my asp.Net application, i am using javascript for some of the webforms. When i run the application in some browsers where javascript is disabled, my application may not execute for some of the users browser. So how can i avoid this problem by cross checking the browsers , that too in the application during runtime. If anyone knows the solution means can i get a piece of codes to solve this problem.. Is there any other way to solve this problem ,without altering my codes (javascript ) in my application.

    VanithaVasu

    ASP.NET csharp javascript asp-net help question

  • Datagrid binding into two columns
    V VanithaVasu

    I have a gridview,in that i have one column inside which another grid view. I dont have any problem with this gridview having a single column. But how can i bind the same dataset with two columns containing daatagrid. Can anybody please help me?

    VanithaVasu

    ASP.NET help question css wpf wcf

  • fire an event for an image in gridview template column
    V VanithaVasu

    How to fire an event when i click the image. protected void GridView1_onImagePress(object sender,ImageEventArgs e) { } ' target="none" runat="server"> ![<% #DataBinder.Eval(Container.DataItem,"ImagePath")%>]]>](<% #DataBinder.Eval(Container.DataItem,"ImagePath")>) ]]>' width="280" height="330" src='<% #DataBinder.Eval(Container.DataItem,"ImagePath")>' id="img1" runat="server" /> .

    VanithaVasu

    ASP.NET sysadmin docker tutorial

  • LinkButton in DataGrid
    V VanithaVasu

    Ya , i got it. But can u tell me is there any other Simple way . And here is my code which worked out. But if this method , i implemented it make be coding conjusted when i have to do some operations on selection of the particular linkbutton. HTML -------- ]]>'> CodeBehind ----------- public string Call_Author(string IsbnID) { ArrayList AuthorCount = new ArrayList(); DataSet ds; ds = objAddDL.Call_Author(IsbnID); // Select query to fetch all author names where IsbnId="someruntimevalue"; string AuthorName=""; foreach (DataRow dr in ds.Tables[0].Rows) { AuthorName = dr[0].ToString(); AuthorCount.Add(AuthorName); } string retval=""; int ACount = AuthorCount.Count; if (ACount == 1) { retval = "" + AuthorCount[0].ToString() + ""; AuthorCount.Clear(); } if (ACount == 2) { retval = "" + AuthorCount[0].ToString() + "" + " , "; retval += "" + AuthorCount[1].ToString() + ""; AuthorCount.Clear(); } if (ACount == 3) { retval = "" + AuthorCount[0].ToString() + "" + " , "; retval += "" + AuthorCount[1].ToString() + "" + " , "; retval += "" + AuthorCount[2].ToString() + ""; AuthorCount.Clear(); } return retval;

    VanithaVasu

    ASP.NET database sysadmin question

  • LinkButton in DataGrid
    V VanithaVasu

    I have a datagrid already binded with dataset. And i have two columns the first column contains Image and the second column contains a table . In the table i have two rows. And in particular column say 2nd row 2nd column i have to create number of linkbutton which i get from another query. This is way i have done my codes. But i am not able to display Total number of linkbuttons . public string Call_Author(string IsbnID) { string AutnorName=""; DataSet ds; ds = objAddDL.Call_Author(IsbnID); string allname="", AuName=""; foreach (DataRow dr in ds.Tables[0].Rows) {AuName = dr[0].ToString(); } string tempAu = Server.UrlEncode(AuName); return "" + AuName + ""; }

    VanithaVasu

    ASP.NET database sysadmin question

  • Bubble Control Event
    V VanithaVasu

    I am having a grid and it contains two columns. The First Column contains one Image and the second column contains table and in the first row of the table i have a Link button like this : ]]>' runat="server" ID="BookTitle"> And i want to invoke an event during onclick event of this link button. Also if i use onSelected_IndexChanged event in grid view like : public void GridView1_OnSelectedIndexChanged(object sender,EventArgs e) { e.----------- } This event is not occuring. I am working on 2.0 gridview.What should i do to invoke the event .Where i am wrong. Can anybody helpme

    VanithaVasu

    ASP.NET css sysadmin

  • Image
    V VanithaVasu

    I have to display the xml file in one of my module at the mouseover.So only i am trying to convert to image and display on mouseover.

    VanithaVasu

    ASP.NET xml question

  • Image
    V VanithaVasu

    How can i convert an xml File into Image.

    VanithaVasu

    ASP.NET xml question

  • How to fire my GridView_OnSelected IndexChanged
    V VanithaVasu

    This is my code: What mistake i have made? Why the event is not firing ? protected void GridView1_OnSelectedIndexChanged(object sender, EventArgs e) { Response.Write("Selection"); } Inline Code: ]]>' width="40" height="50" src='<% #DataBinder.Eval(Container.DataItem,"ImagePath")%>' id="img" runat="server" /> ]]>' runat="server" /> ]]>' runat="server" ID="BookTitle">

    ]]>' >

    VanithaVasu

    ASP.NET sysadmin docker tutorial question

  • onMouseOver
    V VanithaVasu

    I am working on asp.net 2.0. I cannot find the property onMouseOver for the treeview. Is there any other alternative so that when my cursor goes to the treenodes an event should occur. Can i get any sample code.

    VanithaVasu

    ASP.NET csharp asp-net
  • Login

  • Don't have an account? Register

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