Hi, I'm having table like empid,empname,cityname,statename,countryname. how to splitt this table structure. Regards Bharathi
geeeeeeeetha
Posts
-
Partioning table -
XML With javascripthi, While appending a node,whether it will affect original file or not below is my code <html> <body> <script type="text/javascript"> if (window.XMLHttpRequest) {// code for IE7+, Firefox, Chrome, Opera, Safari xmlhttp=new XMLHttpRequest(); } else {// code for IE6, IE5 xmlhttp=new ActiveXObject("Microsoft.XMLHTTP"); } xmlhttp.open("GET","x.xml",false); xmlhttp.send(); xmlDoc=xmlhttp.responseXML; x=xmlDoc.getElementsByTagName("CD"); for (i=0;i<x[0].childNodes.length;i++) { if (x[0].childNodes[i].nodeType==1) { document.write(x[0].childNodes[i].nodeName); document.write(": "); document.write(x[0].childNodes[i].childNodes[0].nodeValue); document.write("<br />"); } } document.write('<br>-----------------<br>'); for(i=0;i<x.length;i++) { newel=xmlDoc.createElement("PUBLICATION"); newtext=xmlDoc.createTextNode("2007"); newel.appendChild(newtext); x[i].appendChild(newel); } for(i=0;i<x.length;i++) { for (j=0;j<x[i].childNodes.length;j++) { if (x[i].childNodes[j].nodeType==1) { document.write(x[i].childNodes[j].nodeName); document.write(": "); document.write(x[i].childNodes[j].childNodes[0].nodeValue); document.write("<br />"); } } document.write("<br />"); } alert </script> </body> </html> Regards
-
AJAX ControlHi, I have added reference to AjaxControlToolkit.dll but ahax controls are not working in my website. this is my code <div> <asp:ScriptManager ID="ScriptManager1" runat="server"> </asp:ScriptManager> <asp:UpdatePanel ID="UpdatePanel1" runat="server"> <ContentTemplate> <aspx:FilteredTextBoxExtender ID="ftbe" runat="server" TargetControlID="TextBox1" FilterType="Custom, Numbers" ValidChars="+-=/*()." /> <aspx:CalendarExtender ID="asd" runat="server" TargetControlID="TextBox1" PopupButtonID="Button1" ></aspx:CalendarExtender> <asp:Button ID="Button1" runat="server" Text="Button" /> <asp:TextBox ID="TextBox1" runat="server"></asp:TextBox> </ContentTemplate> </asp:UpdatePanel> </div>
-
WebServiceshi, I have created one webservice,in that webmethod i mentioned enablesession=false.eventhough i can able to access session values. this is the code public int applivar() { if (Session["name"] == null ) { Session["name"] = 1; } else { Session["name"] = (int)Session["name"] + 1; } return (int)Session["name"]; } REgards Jayabharathi
-
Export Crystal Report to Excel/pdf in asp.net 3.5hi Youth, Can u check this link ? http://www.beansoftware.com/ASP.NET-Tutorials/Export-Crystal-Reports-To-PDF.aspx[^] Regards
-
Gridview with A-Z FilterHi, I want links for alphabet A-Z,when click that letter i want filter and dispaly into gridview.. Can anybody give suggestion to do?
-
DLLHi, I have craeted one dll.some body cracked that dll.whether ASP.NET provide any alert message or any information to that owner of dll
-
Exception from sql server2008Hi, i have created stored procedure with try catch block.if this stored procedure throws exception then i want to dispaly this error message in my asp.net application
-
How to check cookies are enable or disable in borwsertry this one Request.Browser.Cookies
-
Foor loop Code Block in ASPX Pagehi, Just remove eval from Response.Write("<td width=" & colSize(j) & ">" & colName(j) & "</td>") this line. Hope it 'll help u Thanks
-
Logout from MVChi <script type="text/javascript" language="javascript"> javascript: window.history.forward(1); </script>
-
forms Authenticationin page load, If User.Identity.IsAuthenticated = True And User.Identity.Name = HttpContext.Current.Session("username") Then Else Response.Redirect("..\index.aspx") End If
-
forms Authenticationi'm using froms authentication
-
forms AuthenticationSame problem
-
forms Authenticationhi not throwing any exception.... but always returning User.Identity.IsAuthenticated = false
-
forms AuthenticationHi, Forms authentication not working in my system..... Same code working in others system..... Send me some solution Regards Jayabharathi
-
Printer Friendly version [modified]In mozilla,while seeing print preview not showing all the records..... send me some solution... thanks
modified on Thursday, November 26, 2009 6:36 AM
-
How to update multiple rows in a table.hi, create one temporarytable... insert values to temporary table... and use previous post query... if i'm wrong plz excuse
-
How to update multiple rows in a table.hi, if both table having unique column,then u can use below query update MyTable set NtextColumn = ot.NtextColumn from dbo.MyTable join anotherDB.dbo.OtherTable ot on MyTable.KeyColumn = ot.KeyColumn
-
Mysqlhi, I want to search particular string in entire database and i need to retun the full row in Mysql... Regards Jayabharathi Ramasubbu