hi
I want to implement program by c# application. first of all I need web request to a remote server and set proxy and view sourcecode of that page.
How I can write codes is there any code?
I'm having trouble getting the jquery ui 1.8 dialog to center
I've tried leaving the options default, and setting position: 'center'. When the dialog displayed, the browser window gets scrolled down to the centre of the page, and the dialog is positioned at the bottom left of the window.
This worked fine with jquery 1.3.2 and ui 1.7.2. Is there something new I need to do with this version?
Hello, I have come up with a rewriterule to to go to any page on my website without typing in the .php extension because it is automatically added to the url.
The rule is: RewriteRule ^(\w+)/?$ /$1.php
It takes anything you type in my index and adds .php to it, so you can put in http://sampardee.com/index and it pulls up index.php
Now my question is how to detect when a user enters http://sampardee.com/index.php and change it to http://sampardee.com/index
How could I do so with a rewriterule?
Hi,
i have this page:
http://www.tirengarfio.com/rs2/web/miembros/prueba
as you can see the font size is 16px but i have defined a 12px font in the file main.css.
I'm using Firefox 3.6.
Any idea?
Javi
After you enter your name and password on a website, a cookie is stored on your computer. Your computer then sends information from that cookie to the website whenever you browse to another page on that site so that the site knows who you are.
How is information from the cookie sent? Does the browser append information from within the cookie to the html address?
I'm using the hidden iframe method to submit a form with a file upload field. I want to display a message back on the page using javascript and I'm not sure how to do this. If this was just a form with text fields I'd do an AJAX post and respond with a message I'd display in my callback function. I'm just not sure how to accomplish this same task with the hidden iframe method since it is a standard form post.
Hi friends,
I'm new at Drupal.
my url is like
www.blabla.com/drupal/blog/
I have some blocks that must be disabled for blog part. So I go to related block configuration and make it as below:
but it doesnt work :( just to test, I wrote only * , and it worked well. but i doesnt work when I want to define specific page :(
hello,
i have a big problem here..i am using Microsoft charting controls in my asp.net mvc application..pie chart is working in my Mozilla Firefox perfectly when i open try to run the application in IE the chart is not displaying. when i refresh the page couple of times its showing the chart there?
is there anything doing wrong?
please can anybody help me out
thanks
I have multiple input textboxes in my page. I want to reset particular text box to its onload state if certain conditions fails.
I am considering using a Hidden element to store the onload state of the textbox. I would other suggestions or solutions to resolve this issue.
I have a web app that is using the 3.5 framework. I wanted to know how can I detect what webhost is rendering the page.
If the server is localhost, then send email notification to [email protected]
If the server is QA, then send email to [email protected]
Thanks
Hello,
I would like to make a server for a chat and I wonder whether a server must, for example,
connect to MySQL whenever a client enter to a room to check if he is moderator or banned from this room.
Is it necessary that I use MySQL to update the number of connected clients whenever a client go to another room(to display the number of connected clients on a web page)?
I am using Struts application while running welcome page is run successfully after that the following error is appear
org.apache.jasper.JasperException: Failed to load or instantiate TagLibraryValidator class: org.apache.taglibs.standard.tlv.JstlCoreTLV
any idea whats the problem.
I have a page that has the following div structure:
<div id="name" class="class_name">
How would I style the class?
Like this?
#name .class_name
name .class_name
#name class_name
?
I'm trying to set the initial display order of the column headers in a silverlight datagrid by changing the column header DisplayIndex values. If I try to set the column order at page load time, I get an out of range exception. If I set the column order (same routine) at a later time like, in a button click handler, it works. Is this just a bug in the silverlight datagrid control? Suggestions for a possible work around?
I have a string like
Pakistan, officially the <a href="Page.aspx?Link=Islamic Republic of Pakistan">Islamic Republic of Pakistan</a>
Now I am using
System.Text.RegularExpressions.Regex.Replace(inputText, "(\\bPakistan\\b)", "something");
to replace Pakistan outside the tags. But I don't want to replace Pakistan occurring within the <a></a> tags.
Suppose I have an element on my page with id "some_id". I want to call a function as soon as I encounter this element. Something like following.
$("#some_id").call_a_function(function () {
// do stuff
});
Hi All,
I have a page on which there is a link search.
onclicking search i open a LIGHTBOX where i get a textfield and Search button.
Now i want when i enter keyword in textfield and enter on submit button a result should be shown in a lighbox only.
is it possible w/o ajax or i have to use ajax form only.
just curious why we used get request instead of post request for Search functionality.
I have a site that is analyzed by AWStats, and I am satisfied with the information its provides.
Now, is there a way to display a little picture-icon with main AWstats(hits, etc) data on the web site page?
session_start() should be the first line of web page.
Dreamweaver's php templates should be used inside the HTML tag (so, obviously this is not the first line).
What to do?
I have some simple code in an aspx page
<object width="550" height="400">
<param name="movie" value='XXXX' />
<embed src='XXXX' width="350" height="370"></embed>
</object>
I want to be able to dynamically set the value of XXXX.
What is the best way to do this ?
$('#calendar').fullCalendar
(
{
editable: true,
events:
$.ajax
(
{
type: "POST",
url: "Calender.aspx/GetCDCatalog",
contentType: "application/json; charset=utf-8",
data: "{}",
dataType: "json"
}
)
}
)
calender.aspx is page and getcddialog is function which return type is array which doest not bind calender.
public CD[] GetCDCatalog()
{
XDocument docXML =
XDocument.Load(Server.MapPath("mydata.xml"));
var CDs =
from cd in docXML.Descendants("Table")
select new CD
{
title = cd.Element("title").Value,
star = cd.Element("star").Value,
endTime = cd.Element("endTime").Value,
};
return CDs.ToArray<CD>();
}
The help page on the BindUtils.bindProperty function:
http://livedocs.adobe.com/flex/3/langref/mx/binding/utils/BindingUtils.html
Has this to say:
"For example, to bind the property host.a.b.c, call the method as: bindProperty(host, ["a","b","c"], ...)."
But what if I need to bind to host.a.b[2].c? How do I do that?
I would like to keep the contents of large UI lists cached on the client, and updated according to criterial or regularly. Client side code can then just fill the dropdowns locally, avoiding long page download times.
How can I go about this? I mean, what patterns and strategies would be suitable for this?
So I'm trying to figure out how to compare two jQuery objects, to see if the parent element is the body of a page.
here's what I got:
if ( $(this).parent() === $('body') ) ...
I know this is wrong, but if anybody understands what I'm getting at, could they point me towards the correct way of doing this?