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
L

lakshmichawala

@lakshmichawala
About
Posts
165
Topics
104
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • is any online tool to convert mysql storedprocedure to oracle
    L lakshmichawala

    is any online tool to convert mysql storedprocedure to oracle

    MySQL mysql oracle

  • call code behind code from java script
    L lakshmichawala

    hi 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();

    ASP.NET java database tools tutorial

  • how to implement treeview drag and drop of a node using asp.net
    L lakshmichawala

    hi 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

    ASP.NET csharp asp-net tutorial question

  • Err: This is a marker file generated by the precompilation tool, and should not be deleted!
    L lakshmichawala

    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..

    Linux, Apache, MySQL, PHP help linux question discussion announcement

  • how can i navigate to another papge when i click on the title of the webpart
    L lakshmichawala

    this property i couldnot find is there is another way for that

    ASP.NET question

  • how can i navigate to another papge when i click on the title of the webpart
    L lakshmichawala

    iam setting title to the webpart dyanamically now how can i navigate to another page when i click on the title of the webpart

    ASP.NET question

  • how to get the value of the dropdownlist selected
    L lakshmichawala

    tq i hv solved my problem using request.form in my code behind eg: request.form("dropdownlist1")

    ASP.NET javascript help tutorial question

  • how to get the value of the dropdownlist selected
    L lakshmichawala

    ya in hidden field iam giving the ddl selected value but iam getting null while accessing the value

    ASP.NET javascript help tutorial question

  • how to get the value of the dropdownlist selected
    L lakshmichawala

    in 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

    ASP.NET javascript help tutorial question

  • how to get the value of the dropdownlist selected
    L lakshmichawala

    iam 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

    ASP.NET javascript help tutorial question

  • hi how to apply css to the drop dowlist in the catalog zone
    L lakshmichawala

    hi 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

    ASP.NET css tutorial question

  • how to call a method of one user control in another user control
    L lakshmichawala

    hi 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..

    ASP.NET winforms tutorial question

  • how to call a method of one user control in another user control
    L lakshmichawala

    this is not working ...is any other way to do that one

    ASP.NET winforms tutorial question

  • how to call a method of one user control in another user control
    L lakshmichawala

    iam 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 .

    ASP.NET winforms tutorial question

  • how to apply themes to the webparts
    L lakshmichawala

    iam having neary 3 webparts in the webpartzone and iam creating two webparts dynamically..now how can i apply themes to this webparts

    ASP.NET tutorial question

  • grid is not displaying when it is kept in the zone template of the webpart
    L lakshmichawala

    normally 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

    ASP.NET css help tutorial

  • file download problem
    L lakshmichawala

    hi 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

    ASP.NET help tutorial

  • file download problem
    L lakshmichawala

    here 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()

    ASP.NET help tutorial

  • file download problem
    L lakshmichawala

    hi 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

    ASP.NET help tutorial

  • file download problem
    L lakshmichawala

    iam 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

    ASP.NET help tutorial
  • Login

  • Don't have an account? Register

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