flying machines have the problem, what about floating machines:confused:
sriharsha_12
Posts
-
So day 2 of flights cancelled..... -
Managing sessiononce u give a value to session variable, it will remain d same, until the session expires or u modify that variable...so why u need to check that in every page...
-
FCKEditoryea it is problem with the path, now its working...thanx yaar... previously it was like folder/subfolder/../fckeditor, i changed it too ~/fckeditor :-O
-
FCKEditorI'm using FCKEditor in one of my pages....it was working fine....recently when i load that page in the place of the editor it shows "page cannot be found"....but when i run application in my local system it is working fine... i even tested with live data in my local application everything is fine...there is no problem with the data, it is the editor that is not loading in my live application...any suggestions??
-
code hightlighting while submitting articlewhen u read line by line from editor, u should compare the words...if it matches any pattern then color them accordingly...if the pattern matches a comment until the end of line u need to mark it as green...
-
DataGrid or GridViewrow highlight on mouse over and undoing it mouse out is working f9...when we do mouse over we change only back color, whether is it possible to change both fore n back color or even font in code behind or javascript?
-
script # problem [modified]k...i'll try that...
-
script # problem [modified]no need of the encode, i replaced it with hex code %23, then it worked fine...
-
script # problem [modified]i'm using window.location.href... properties used... assume these values... ex:1 <SCRIPT>window.location.href ='mailto:test@test.com?subject=c&body=Hello'</SCRIPT> ex:2 <SCRIPT>window.location.href ='mailto:test@test.com?subject=c#&body=Hello'</SCRIPT> example 1 is working fine...when i come to example 2 to, it displays email and subject till '#' after that nothing is displayed... whenever there is a hash from that point nothing is getting displayed...but i need to display #... any ideas to overcome this issue....i'm using I.E...
modified on Friday, February 5, 2010 1:00 AM
-
DataGrid + Checkboxesyea after changing that...it got fixed...after posting it, i thought of that ;P thanx bro...
-
DataGrid + CheckboxesI have two data grids in a page...both has check box column(for check & uncheck all)... header template check box id checkall(dg1) & checkall1(dg2)... item template check box id chkdelete(dg1) & chkdelete1(dg2)... when i click checkall(dg1) even check boxes in dg2 are selected...but when i click checkall1(dg2) only dg2 is clicked... this is js i'm using...i know there is a silly mistake, but donno where to fix it... (dg1) function CheckAllDataGridCheckBoxes(CheckBoxControl) { var frm = document.forms[0]; if (CheckBoxControl.checked == true) { var i; for (i=0; i<frm.length; i++) { if (frm.elements[i].name.indexOf('chkdelete')!=-1) { document.forms[0].elements[i].checked = true; } } } else { var i; for (i=0; i<frm.length; i++) { if (frm.elements[i].name.indexOf('chkdelete')!=-1) { document.forms[0].elements[i].checked = false; } } } } (dg2) function CheckAllDataGridCheckBoxes1(CheckBoxControl) { var frm = document.forms[0]; if (CheckBoxControl.checked == true) { var i; for (i=0; i<frm.length; i++) { if (frm.elements[i].name.indexOf('chkdelete1')!=-1) { document.forms[0].elements[i].checked = true; } } } else { var i; for (i=0; i<frm.length; i++) { if (frm.elements[i].name.indexOf('chkdelete1')!=-1) { document.forms[0].elements[i].checked = false; } } } }
-
Selecting Rowsthanx man...i'll try that...
-
Selecting RowsSay if i have 100 rows, if i need top 15 rows i'll use, select top 15 * from table1 if i need from row 25 to 50, how will i select!!!!
-
Wrong Value being displayedI defined a column in db(sql) as numeric...i'm retrieving it in code behind with a variable declared as double...and mailing it...recently i stored a value 5 , but in mail it is displayed as -1...when i did line by line execution the variable showed 5!!! not only this time in the past i received few mails with -1, instead of some other value!!!
-
Menus & Viewsthanx for the suggestion...i never tried that before...now i'll experiment it...is there any other way :-D
-
Menus & Viewsi'm new to vb n asp.net...i wanna do this without any 3rd party controls... i need to create a dynamic tab control in asp.net & code behind with vb...so i created a menu and takes its menu items from a table...so far its working fine... my menu looks something like this, xxx|yyy|zzz| i have a textbox when u enter a new menuitem and when i click save the new item will get appended to the present list... xxx|yyy|zzz|aaa now when i click say xxx it needs to show a view that has my user control... since i'm creating menuitems dynamically how do i create views with my user control and link them to the newly created menu item....
-
Dynamic Tabsit is in asp.net....so i'm using menus and multiview....
-
Dynamic Tabsi'm new to vb.net...How do i create dynamic tabs...for my project i need dynamic tabs, i created tabs and it works fine...but adding tabs dynamically is where i got stuck up... :confused:
-
Getting Values [modified]i searched, but i didt get anything...
-
Getting Values [modified]Hi all...i'm new to xml...i'm displaying values from xml file to html using the below code... HTML FILE
<form id="form1" runat="server">
<div>
<asp:TreeView ID="TreeView1" runat="server" DataSourceID="XmlDataSource1">
<DataBindings>
<asp:TreeNodeBinding DataMember="Product" ValueField="ID" TextField="Name"></asp:TreeNodeBinding>
<asp:TreeNodeBinding DataMember="Desc" ValueField="Value" TextField="Value"></asp:TreeNodeBinding>
</DataBindings>
</asp:TreeView>
<asp:XmlDataSource ID="XmlDataSource1" runat="server" DataFile="~/XML/XmlFile_1.xml">
</asp:XmlDataSource>
</div>
</form>XML FILE:
<?xml version="1.0" encoding="utf-8" ?>
<!-- This file represents a fragment of Product
store inventory database -->
<Products>
<Product ID="1" Name="a" Price="5">
<Desc Value="5 boxes x 50 Bags"/>
</Product>
<Product ID="2" Name="b" Price="10">
<Desc Value="24oz bottles"/>
</Product>
<Product ID="3" Name="c" Price="15">
<Desc Value="40 kg pkgs"/>
</Product>
</Products>Now i wanna use a text