Jump to content

pulpfiction

Members
  • Posts

    1,210
  • Joined

  • Last visited

Posts posted by pulpfiction

  1. Hi,Even I am facing the similar kind of problem. In my problem, I am scrolling down the page and and when I am half down the page and click one button there to see some data related to that row, it's opening the new window but the focus is going to the first row of the page. I mean it's going back to start of the page.Please let me know how can I correct this??..Thnx,Bhushan

    Hi bushan, i guess your problem is different frm mine, anyways try doing this...in the top of the HTML page you will find somthing like this add the bold part.<%@ Page language="vb" smartnavigation="true"this will make your page stay in the position where it was clicked......
  2. hi,Finally sorted out, propably may not be the best of the solutions, but stillby using iframes, and when i click the hyperlinkcolumn in the top dg then using javascript i can populate the lower dg and display it, since its iframes the postback in one frame will not affect the other. If any other better method to handle this, pls suggest thank you.

  3. About the Problem2 you can use "iframes" left side will have links which when clicked will display pages on the right.<table><tr><td>This is the Menu <br><a href="LondonBridge.htm" target="iframe1">London Bridge</a><br><a href="somthing.htm" target="iframe1">somthing</a></td><td width="220" valign="top"><p align="center"><iframe name="iframe1" src="Initial_page.htm" align="top" height="100" width="400" hspace="10" vspace="10">If you can see this, your browser does not support iframes! </iframe></p></td></tr></table>

  4. if you need from setup1. run the easyphp.exe setup file,2. it will ask you for destination folder etc such simple steps.3. If all went well - congratulations! Apache, PHP and MySQL are all installed and running! You should see a black E in your toolbar tray. You can right click on it to get a menu which will let you control the running programs, but you won't be needing that for now. Already setup, to test a file.To test create a php file (eg:test.php)<? echo "Hello World" ?>goto the easyphp folder and look for the "www" folder (could be a sub folder i dont remember exactly ). Copy the test.php in that folder.type "http://localhost/test.php" in the browser. if you get "hello world" success!!!make sure easyphp is running when you try run php file....

  5. hi guys,using asp.net/vb. i am using two datagrid one below the other, the top dg has a list, when i click the list the details is shown in the second dg. The problem is the top dg has multiple pages and when i go to the second page and click the item, the lower dg displays the details perfectly but the top dg goes to the first page, how can i make the top dg stay in the same page.....

  6. Code Looks pretty much fine.To check test with simple direct mail id's<% Set Mail=Server.CreateObject(“CDONTS.NewMail”) Mail.To=”me@mydomain.com” Mail.From=”testing-my@SP-Script.com” Mail.Subject=”Just testing my script” Mail.Body=”Hey! I am sending this email through an ASP Page and guess what? I haven’t learnt much yet, but know that ASP is very powerful.” Mail.Send Set Mail=nothing %>HTH

  7. you will be populating the datagrid during the Page_Load. Check if you are doing that inside this PostBack condition. If not try doing it.Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.LoadIf Not (IsPostBack) Then' Code to Populate DatagridEndIFEnd SubWhen the Update button is clicked then the page is posted back, and if you populating without checking the postback then the DG will be populated frm DB and thats why u are getting the old Data again.

×
×
  • Create New...