I need to understand the load sequence for a sharepoint page that uses a query string to filter content.
If I pass in a query string, I assume that SharePoint first passes that query string to any web parts that need it, waits for the web parts to load their content then loads the final page? OR does SharePoint first load the page then...
This is for a website written in PHP (with very minimal JS, only used for a drop-down menu), using CSS, and a mySQL DB.
95 percent of the time my pages display fine. But occasionally as I click back and forth between pages, the page I've just clicked to does not display properly. It's always the same pattern of non-display when it happe...
Hello!
i work with jqgrid for listings only also i don't use jqgrid forms
i need to call external forms (example: update.cgi?id=123) to make modifications on the database.
how can i make that ?
thanks a lot
...
I have two validation groups and two validation summaries on my page. Controls belong to either of two groups and there is a button for each group that performs the validation for each.
I can't get page.isvalid to work; it always returns true regardless of the validity of the controls on the page. Is there a different way to validate on...
Hello folks.
I have one page (Products) that searches for products which are then displayed in a gridview. Lovely stuff.
I then have a second page that is essentially a feedback form (Feedback). So therefore, a person should be able to search for a product, see its details in a gridview and then click on a hyperlink taking it to the fe...
I am new to ajax and i wanted to know if we can load a complete new page and not just a part of it using ajax. Please give a small example script for understanding if this is possible. Here i am trying to display only one url to user while i change from one page to another when he clicks on any of the links in the page.
...
hello,I am new to vba and I would like to know if can search thru the worksheets, copy and then paste in a new worksheet on a column thank you
Public Sub CopyandPaste()
Dim ws As Worksheet
' Delete all data from Summary Page
Worksheets("1a").UsedRange.Delete
' Copy each worksheet in file and paste to Summary Page
For Each ws In Works...
hi,
i have a web page that has to go dim on page load and some box comes over.
the box has to have a TextBox. this box takes some input from the user. and on click
on a submit button the TextBox info is to be checked on server and then accordingly the
already dimmed web page may go normal(usable) or keep dimmed.
very much like...
I need to get some part of html pages using php XPath query (sorry im new to XPath).
example html page
<html><head>blah lines</head><body>
<div id="mytable">
<table><tr><td>table cell value</td></tr></table>
</div>
<body><html>
is there any way to get div contents of above example along with html tags using XPath
...
I want to display a Word document in my ASP.NET page, and I want to be able to highlight text in the document according to events that happen on the page (like button clicks).
Is it possible?
Thanks.
...
Hi, I am trying to do some analysis with the logical address. The following program explains
my motive ...
#include<stdio.h>
int main()
{
int x=10;
printf("The address of main is %p\n",&main);
printf("The address of x is %p\n",&x);
return 0;
}
When I run this program in my 32bit system it shows
The address of main is 0x80483b4
T...
How you get web page data and set the data to string ?
somthing like :
NSString *str = GetWebPageData("www.mysite.com/webpage.html");
in the str, i will see "html my web page html" for example
...
I'm working on enabling facebook connect with my website, and it seems to work pretty good so far. However, loading the facebook api library on every page of my site is bogging it way down. All the other php classes that I'm using compile in well under 1 second, but I'm seeing serve times ranging from 3 - 20 seconds just to get the faceb...
I wanna how to add a custom web part to a webpart page through code? The custom web part is already deployed to the SharePoint site. It's a MOSS instance.
...
i have seen many websites like msn.com or sulekha.com(although sulekha.com is not in silverlight) which is said to be in silverlight. and its home page gives blurr effect. But when we right click on the page it does show html. so can any body help me on this?
i don't want to do anything in ??javascript??
...
I am using a CSS style hover on some image links on my page.
When a user hovers over an image, it's background position changes, providing a highlight effect.
When I hover over the image in i.e.6 my page gets pushed down by 40px.
Why is this?
...
I'm trying this:
function send_sms() {
$liveQuery = $this->db->get('liveList');
$counter = 0;
foreach($liveQuery->result() as $row):
$counter = $counter+1;
echo("Not hatin', just iteratin'. Message " . $counter);
endforeach;
}
When liveList has 8000 records it runs just fine, but when I try with 9000 rows it generates a downl...
I'm writing a page dealing with a large amount of data. It would last forever until my resultant page loaded (nearly infinite) because the data returned is so large. Therefore, I need to implement an incrementally loading page like one at thie url:
http://docs.python.org/
Everytime a search term is entered, it will continue to load, a...
How can I open my Default.aspx page without Addressbar, Menubar & Statusbar?
...
Hi All,
I have a IHttpModule to serve up .aspx page dynamically, this is so I can pack them into a DLL and drop it into an existing web site and serve up my pages.
I have a class MyPage derived from System.Web.UI.Page which has a .aspx, .aspx.cs and a aspx.designer.cs file.
When I try to instantiate the class I.e. MyPage myNewPage = M...