Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: shalni
  • Order by date
  1. shalni

    Accessing another form's elements thru javascript

    Hi, Consider two pages, first.html and second.html. From first.html, i am submitting a form to second.html. I must access form elements of first.html in second.html through javascript. How to do this? Please help
  2. shalni

    MCAD .NET 70-315 (C# Web Apps) Tips

    I am not getting Kalani's book here in Bangalore, India. :( Can anybody give me information reg. how to get it here? (not Amazon)
  3. shalni

    ASP.NET with Text Editor

    It is giving me error that it might be missing an assembly or namespace reference. It is cuz i am creating an object of TranslatorClass.cs in Translator.aspx.cs. How to solve this? And BTW how to call a dll in a class file?? Please help me!!!!!
  4. shalni

    ASP.NET with Text Editor

    I compiled the TranslatorClass.cs using the command csc /t:library then i copied the dll to the bin directory in the virtual folder. but when i tried to compile Translator.aspx.cs it gave me error. Actually in the Translator.aspx.cs file i create an object of the TranslatorClass. so it is...
  5. shalni

    ASP.NET with Text Editor

    well, i had included the designer generated code. But had not compiled the cs files. now i have for Translator.aspx file --> two cs files one is Translator.aspx.cs and TranslatorClass.cs file. Shud i compile both? and how do i compile them? Please help
  6. shalni

    ASP.NET with Text Editor

    I want to create a ASP.net page without using Visual Studio. But in the same structure i.e., i want to have a .aspx file, a .aspx.cs file and a class file. I am using Notepad to create these files. I created these 3 files in a virtual directory and incuded the following code in the beginning of...
  7. shalni

    Oracle designer and Form Bulider

    We are trying to create an application which is used to track software requirements of projects using Designer 6i. We created modules and tables using designer. Now we want to provide additional functionality for the forms. Like there will be an initial form with a drop down list and few...
  8. shalni

    About .aspx in windows server 2000

    Check out for "Internet Services Manager" in the Administrative tools. This will take u to the IIS window. If it is not there, it means that IIS is not installed in your system. So first install it.
  9. shalni

    Retreiving text of a dynamic textbox

    I replaced the line: Response.Write(Request.Form("textbox1")) ; with Response.Write(Request.Form.Get("textBox1").ToString()); Now it is working fine :-D
  10. shalni

    To run ASP.NET

    .NET Framework
  11. shalni

    Retreiving text of a dynamic textbox

    here is the code: public class Dyntextbox : System.Web.UI.Page { protected System.Web.UI.WebControls.PlaceHolder PlaceHolder1; protected System.Web.UI.WebControls.Button Button2; protected System.Web.UI.WebControls.Button Button1; private void Page_Load(object sender...
  12. shalni

    Retreiving text of a dynamic textbox

    I have a button in a form. when it is clicked, a textbox is dynamically created. Then when the user enters some text in it and clicks on another button i want to response.write the text in that textbox. but i am unable to do that. Please help

Part and Inventory Search

Back
Top