|
yes.
1) Use a tool with a "Find and Replace All" tool (such as dreamwevaer)
or
2) use functions and / or include files. For example in PHP:
-------------------
File "a.php":
hello
-------------------
File "b.php":
world!
-------------------
opening file b.php will output:
"hello world!"
|
|
|
|
|
How do I change active view when ScriptManagers OnNavigate event fires?
On button control click all is ok, however, when user clicks browsers back button fires OnNavigate.
It allows to change label.text property and it displays correct, but multiview shows old view.
It`s nothing to wory before something happen and when it happents it`s alredy to late to wory!
|
|
|
|
|
I am assuming you know nothing about AJAX ( which has no OnNavigate event ) and you're using the ASP.NET AJAX library, in which case, this is the wrong forum.
Christian Graus
Driven to the arms of OSX by Vista.
Read my blog to find out how I've worked around bugs in Microsoft tools and frameworks.
|
|
|
|
|
Hey,
I was just wondering what kind of coding environment people prefer for web development? There are so many options, but I'm more interested in what is generally an industry standard. I guess the question comes down to, do most people (personal preference and in industry) _really_ prefer text editors?
I guess everywhere on google people's comments come down to bashing visual-aided environments (things like Dreamweaver) and take pride in using text editors/notepad. Is this really the case?
I'd appreciate if anyone can shed some light on the topic, I don't really do web development in industry, but rather make personal sites for fun so I'm a little curious
Thanks,
See_Sharp
|
|
|
|
|
I tend to hand code at the beginning, using notepad, but then, as sites become bigger and more complex I will use VWD, but just to keep track of things.
------------------------------------
"When Belly Full, Chin Hit Chest"
Confucius 502BC
|
|
|
|
|
Generally whatever is right or you are comfortable with.
Personally I tend to develop using dreamweaver's code view under windows. But I have also used notepad, notepad++ and Aptana Studio.
When I'm working on a linux box I'll use aptana, but it adds so many extra files to the project - it can be a pain to maintain (i havent found an easy cleanup option), so I won't use it on Windows. It does have a good intellisense stylee code helper tool. and automatic code generation for all the basics (getters/setters).
Dreamweaver does make coding easy with code completion etc and the inbuilt filemanager is nice and responsive. DW also has an excellent site manager for working with dynamic sites and minimising the time spent tralling through dialogues to get to your "images" folders.
If I need an editor on clients servers, I tend to use notepad++ on windows (small footprint + code colouring) or VI on Linux (Good for quick modifications when remotely connecting using SSH).
Oh and dispite the fact I use it less and less these days, the visual editor has helped me solve many errors such as positioning issues over the years (DW shows you where the paddings and margins actually are - rather than relying on the space between elements in the browser). The properties box also saves the time of having to look up image sizes - on click and it writes them for you (in nice tidy code I might add).
Hmm... Guess I'm a Dreamweaver fan.
|
|
|
|
|
Visual Studio works for me, but most of my web development is for ASP.NET.
When I code otherwise, I really like UltraEdit[^]. It's hard to call it "just a text editor" anymore.
|
|
|
|
|
hiiii to all
any one can tell me how to send sms like
INTERNET ur message
send this to 5555
by asp.net
like business companies doing
they providing
WORD YOUR NAME
SEND THIS TO 5555
Like that
rizvan sivally
|
|
|
|
|
I guess if you can't work out how to not double post, or how to use the ASP.NET forum, or how to use google, one has to wonder what you'd be able to do with any replies you got.
Christian Graus
Driven to the arms of OSX by Vista.
Read my blog to find out how I've worked around bugs in Microsoft tools and frameworks.
|
|
|
|
|
make a list of web sites from where you can send free phone msg
create a bot in a free web host to navegate to a site to collect information, then navigate to free msg site to send that information to your phone
when you run out of messages send from other site
nelsonpaixao@yahoo.com.br
trying to help & get help
|
|
|
|
|
hiiiiiiiii to all
any one can tell me how do programming in asp.net to send sms by internet to mobile.
rizvan sivally
|
|
|
|
|
Hi everybody,
I just wanted to know, how to avoid using tables in asp.net 3.5 UI.
There must an option (AutoPositon property) to drag and drop controls at any part of the design page.
Any early replies will be heartly appreciated.
Many thanks in advance.
regards
Sajid
Electronia Co ltd,
Alkhobar,KSA
|
|
|
|
|
Sayed Sajid wrote: how to avoid using tables in asp.net 3.5 UI.
Why you are trying to avoiding Tables.
If you want to design perfect web site that would be used in multiple web browser you should use Table. Even You can do it using DIV also. But Table i better option.
Sayed Sajid wrote: There must an option (AutoPositon property) to drag and drop controls at any part of the design page.
Its always better to desing your site only from aspx page, not by Drag and Drop Control in page, It may create lots of problem in multiple browser.
Thank you
|
|
|
|
|
Hi Abhijet,
Thanks for the answer.
Am not able to align my controls in the table columns. Apart am also not able to select multiple controls and align them.
Anyway am working on a intranet application. But still I would prefer to work avoiding tables.
I would be thankfull if you elaborate the DIV format.
Many thanks in advance.
regards
Sajid
Electronia Co Ltd,
Alkhobar - KSA
|
|
|
|
|
|
hiiiiiiiii
Here rizvan,please go in asp.net Format Meanu
please select what u want to reset then go in fromat menu the select position
u can then find the result what u want
Thanks and Regards
RIZVAN SIVALLY
Zrs Technology Pvt Ltd
www.zrstechnology.com
rizvan sivally
|
|
|
|
|
Hi,
I'm using Michael Chourdakis's very nice SSL package from here:
http://www.codeproject.com/KB/IP/ssl_sockets.aspx
I used the code as a base for a test app and its working very well, however, I'm having a strange issue.
On one remote test machine, when I run as a server in NON SSL mode, sending a few hundred bytes back and forwards, its lightening fast. I switch to SSL mode and its a little slower (due, I suppose to the encryption) but it's still fast.
However, on a second remote test machine at a different location the results vary. The NON SSL mode works lightening fast, however the SSL mode takes 30-40 seconds to complete. It connects and then there is a long period until the data is transferred back and forth, but once it starts its fast.
Is it possible that on this second machine the Certificate is being re-negotiated every time? If so, do you know if there is an app or an OS fix?
Thanks for your help,
Phil
|
|
|
|
|
Someone can help me, how to set height and width dynamically?
i try dis code
<script type="text/javascript">
function setSize(elem)
{
//find the height of the internal page
var the_height= elem.contentWindow.document.body.scrollHeight;
var the_width= elem.contentWindow.document.body.scrollWidth;
//change the height of the iframe
elem.height= the_height;
elem.width= the_width;
//alert(the_width);
}
</script>
<iframe id="Iframe1" src="Login.aspx" onload="setSize(this)" style="background-color: transparent" scrolling="no"></iframe>
iframe height function perfectly in ff,ie and chrome but iframe width not functioning in ffFrown any one can help me?
|
|
|
|
|
Try the below code
<iframe height="50px" id="frmSam" width="50px" src="http://www.google.com"></iframe>
<script type="text/javascript">
document.getElementById('frmSam').style.height="200px";
document.getElementById('frmSam').style.width="400px";
</script>
It worked fine for me.
|
|
|
|
|
hi.. yup its work.. but how do we set iframe width or height following iframe contentDocument height n width?
|
|
|
|
|
it worked but when i set src of the frame to "http://www.google.com" and it produce error said "access is denied".
what can i do now?
|
|
|
|
|
Hello,
I have created a Win32 utility which detects specific system details.
I now want to use this as a security utility.
I have no problem with publishing and running but, but I'm not able to some sort of embed it into a webpage.
The idea is to have a user type in credentials and after that, based on the information gotten back from the security utility, access is granted or denied.
What I need is a way to execute this security utility and make it send back information to the webpage which then handles it further.
I have created the security utility with C#, but if it does require VB or VC++ to complete the job, that has to be done.
One last note is, is that all users will use the Windows platform.
Thanks in advance if you have a solution!
|
|
|
|
|
You want to write an activeX dll in C++, a C# dll means your users need .NET installed. Then you can embed an activeX in a web page.
Christian Graus
Driven to the arms of OSX by Vista.
Read my blog to find out how I've worked around bugs in Microsoft tools and frameworks.
|
|
|
|
|
I've done an exhaustive search for my problem on the net and either I'm not searching for the right keywords or I'm the only one having this problem. My site has several pages that utilize XML Data Islands and binding to HTML tables. The binding works flawlessly. What I need to do is loop through the rows of the table following the binding and do some conditional formatting, housekeeping, etc. An example would be to highlight every other row for easy readability.
My problem is that when I call my formatting code the data binding has not yet completed. Therefore, when I get a count of the rows its whatever it was at that moment in time. It's not complete and what I end up with is only a top portion of the table is formatted.
In an effort to wait for the data binding to fully complete I've tried various events on the Data Island, table, XMLHTTP object, etc. but to no avail. The only way I can get this to work is to call the formatting function using the setTimeout method but even then the correct number of milliseconds to wait is hit or miss.
Below is a simplified version of my code that simulates my problem. The row count returned by the getTableRowCount function is always lower than the actual number of rows that are created when the data binding finishes.
<html>
<script>
function retrieveStatusHistory() {
var xmlHttp = new ActiveXObject("MSXML2.XmlHttp");
xmlHttp.Open("GET", myURL, false);
xmlHttp.Send(null);
document.all.xloadstatus.loadXML(xmlHttp.responsetext);
}
function getTableRowCount() {
var myRows = document.getElementsByTagName("tr");
alert(myRows.length);
}
</script>
<body onload="retrieveStatusHistory();getTableRowCount();">
<xml id="xloadstatus"></xml>
<table datasrc="#xloadstatus">
<!-- My row and cell definitions -->
</table>
</body>
</html>
|
|
|
|
|
how to write Edit and Update both method in Winform2008 on one button and at run time caption should be change.
if i click button edit after click should be update...
Vinay
|
|
|
|