is any online tool to convert mysql storedprocedure to oracle
lakshmichawala
Posts
-
is any online tool to convert mysql storedprocedure to oracle -
call code behind code from java scripthi one way is u keep a button make it style display =none and in the click event u write the code which has to be executed when it is click.and the other thing is simple just call the button click event through javascript where ever u want .eb:document.getelementbyid('button').click();
-
how to implement treeview drag and drop of a node using asp.nethi iam having a treeview where the sample structure is like this ... cabinet under cabinet there are folders and under folders there are some documents.now i want that documents to move from one folder to another folder using drag and drop ...how can i perform this functionality. Thanks in advance
-
Err: This is a marker file generated by the precompilation tool, and should not be deleted!Hello, I have installed Mono 2.4.2.3 version on Linux Redhat OS. I m facing the error "This is a marker file generated by the precompilation tool, and should not be deleted!" Earlier I had 2.4.2.1 version in which it was working fine. For some other bug fix, i had installed the latest version. Any thoughts on this? Pl. revert Thanks..
-
how can i navigate to another papge when i click on the title of the webpartthis property i couldnot find is there is another way for that
-
how can i navigate to another papge when i click on the title of the webpartiam setting title to the webpart dyanamically now how can i navigate to another page when i click on the title of the webpart
-
how to get the value of the dropdownlist selectedtq i hv solved my problem using request.form in my code behind eg: request.form("dropdownlist1")
-
how to get the value of the dropdownlist selectedya in hidden field iam giving the ddl selected value but iam getting null while accessing the value
-
how to get the value of the dropdownlist selectedin javascript ============= <script type="text/javascript" language ="javascript" > function AddItem() { var opt = document.createElement("option"); document.getElementById("DropDownList1").options.add(opt); opt.text="One"; opt.value="One" var opt = document.createElement("option"); document.getElementById("DropDownList1").options.add(opt); opt.text="Two"; opt.value="Two" var opt = document.createElement("option"); document.getElementById("DropDownList1").options.add(opt); opt.text="Three"; opt.value="Three"; return false; } function GetDropDownValue() { alert("h") var ddlValue; var objControl = document.getElementById('<%=DropDownList1.ClientID %>'); alert(objControl.selectedIndex) ddlValue=objControl.options[o bjControl.selectedIndex].value; document.getElementById('hfldResult').value = ddlValue; } </script> in code behind Protected Sub Button1_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Button1.Click Dim tJavaScript As String = "" tJavaScript = "<script language='javascript'>GetDropDownValue();</script>" Page.ClientScript.RegisterStartupScript(Me.GetType, "abc", tJavaScript) End Sub
-
how to get the value of the dropdownlist selectediam adding items to the dropdownlist using javascript function while loading the page.using the webservice.now when click on save button how can i get the value selected in the dropdownlist in the code behind,my problem is that the value selected in the dropdownlist is getting null when i accessing through code behind
-
hi how to apply css to the drop dowlist in the catalog zonehi i hv a catalogzone in my page now every time when i clicked on catalog zone iam getting the dropdownlist and the controls to add the webparts. now in the catalog zone the dropdownlist is comming very big .so how can i add style sheets to the catalog zone dropdownlist or how can i hide the dropdownlist so that when ever click on add the control automatically add to the webpart zone
-
how to call a method of one user control in another user controlhi Maseko, actually in my application there are neary 25 webpages which are using two user controls tat are banner and navgation user control..but in each page the ids of these two controls are different and they have used according to the pagenames..now there is a situation that the method of one user control u1 is required to used in the u2 when a button in the u2 is clicked..
-
how to call a method of one user control in another user controlthis is not working ...is any other way to do that one
-
how to call a method of one user control in another user controliam having two user controls u1 and u2 .i have one public method in u1 .now i want to call this method in u2.how can i handle this one .
-
how to apply themes to the webpartsiam having neary 3 webparts in the webpartzone and iam creating two webparts dynamically..now how can i apply themes to this webparts
-
grid is not displaying when it is kept in the zone template of the webpartnormally when iam assigning data to the grid it is disaplaying but when iam kept the grid in the webpart of the zone template the grid is not displaying how to solve this problem Thnks in advance
-
file download problemhi Abhijit sorry to disturb u ...i have got the soluting for that problem.now this is new problem iam facing abi..since some cases the arabic file name is large more than 40 characters in length then while saving the file actual file name is not coming
-
file download problemhere file.name contains that arabic file name with a long name characters. Response.AddHeader("content-disposition", "attachment; filename=" & Server.UrlPathEncode(file.Name)) Response.AddHeader("Content-Length", file.Length.ToString()) Response.ContentType = type ' "application/octet-stream" Response.WriteFile(file.FullName) Response.End()
-
file download problemhi thanks for ur reply My problem is iam having a arabic file with large file name like this شش شششش شش شششش شش شششش شش شششش.doc when iam trying to download this file using the dowload code in file download popup iam able to see only few characters of the file name and while saving iam not getting the exact file name wat i download above how to solve this problem
-
file download problemiam downloadin file which has arabic file name with a length more than 60 characters in arabic when i click on download the file name is showing ...and arabic file name and while saving the complete file name is comming.how to solve this problem