VanithaVasu
Posts
-
How to open link in New Tab in the Main browser -
How to index and Search the text in the imageI 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
-
Block iframe inside update panelI 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
-
Footer Template controls in DatalistI am using my own image in the image button from toolbox.
VanithaVasu
-
Footer Template controls in DatalistHow 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
-
Mapping another systemsI 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
-
[Message Deleted]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
-
multiple selectionSet the Selection Mode property to ' Multiple ' and then u can select multiple item by pressing Ctrl Key
VanithaVasu
-
check with browseryes. First i want to check whether it is enabled or disabled and if it is disabled i have to enable the javascript.
VanithaVasu
-
RequiredFieldValidator ProblemFor 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
-
check with browserHai, 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
-
Datagrid binding into two columnsI 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
-
fire an event for an image in gridview template columnHow 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
-
LinkButton in DataGridYa , 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
-
LinkButton in DataGridI 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
-
Bubble Control EventI 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
-
ImageI 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
-
ImageHow can i convert an xml File into Image.
VanithaVasu
-
How to fire my GridView_OnSelected IndexChangedThis 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
-
onMouseOverI 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