|
...
50-50-90 rule: Anytime I have a 50-50 chance of getting something right, there's a 90% probability I'll get it wrong...!!
|
|
|
|
|
Hi all,
I recently moved south to Bangalore and I am working for a large software integrator mainly testing. My project team is working on web service project. We plan to use an open source software like soapUI now. Are you able to point me to online and offline resources/trainings that can help me and friends get up to speed with this technology.
All the help group members can provide in this regard is much appreciated.
Thanks,
Rajesh Ahuja
|
|
|
|
|
Hello Rajesh,
There are several online resources available for these technologies. Just google for it. I also suggest that you look up some of the quality indormation on www.soapui.org that cover it in detail.
Also recommend your attending Introduction to soapUI Training course on how to thoroughly test Web and REST services because it has a lot of hands-on lab work. When I spoke to Schnieder in Bangalore for Saltmarch BT Summit, he said the training covers how to use soapUI to test SOA, Web and REST services for scalability, performance and reliability.
Saltmarch also does an Advanced soapUI Pro training course. For training details check www.saltmarchi.com.
Good luck,
Dheeraj
|
|
|
|
|
Hi!
I am working on online shopping web site. I use php and JavaScript for implementation . I have list of category of items as links. user clicks one of them to see list of items that belong to clicked category. I would like to know how can I understand which link is clicked on previous page.
Any recommendations are really appreciated
p.s I use code below to add link to a table
<br />
<br />
<tr><br />
<td width="186"><a href="javascript:;" class="navText">Link Text </a> </td><br />
</tr><br />
|
|
|
|
|
you could add a variable to the url you use eg
<a href="mycart.php?item=shoes">My Item</a>
and then access it using php. e.g:
mycart.php:
<?php
$item = $_GET['item'];
echo $item;
?>
or the asp equivalent.
If you are using javascript perhaps you could create an array of items you can add more items to. You'd be better off handling it server side though (php).
BTW there's a PHP forum on CP.
|
|
|
|
|
Thanks a lot for your attention
|
|
|
|
|
Hi,
Can anyone share your ideas about drawing a cirlce in a page and add some text inside that using HTML?
Thanks,
Sivakumar.M.
|
|
|
|
|
You could just make a DIV with a background image of a circle and then add text in that.
But if you meant actually drawing the circle check out this library:
http://www.walterzorn.com/jsgraphics/jsgraphics_e.htm[^]
After which you could create an element absolutely positioned over it with text.
Strive to be humble enough to take advice, and confident enough to do something about it.
|
|
|
|
|
i don't know if anyone has seen this but i have a simple html form that uploads a file (image really) using the standard html
|
|
|
|
|
Do you get any Errors? Try this
Tools --> Compatibility View --> am not sure there but there is an Option that allows you to view a website as if its in IE7, i dont have IE8 installed so but i know what you talking about.
Kind Regards
Vuyiswa
Vuyiswa Maseko,
Spoted in Daniweb-- Sorry to rant. I hate websites. They are just wierd. They don't behave like normal code.
C#/VB.NET/ASP.NET/SQL7/2000/2005/2008
http://www.vuyiswamaseko.com
vuyiswa@its.co.za
http://www.itsabacus.co.za/itsabacus/
|
|
|
|
|
IE8 closed off the information-disclosure problem whereby JavaScript can read the .value attribute of a file upload control and determine the full local pathname, which might include information like the user’s name, profile directory, etc. Specifically, they changed from ALLOW to DENY for the Internet Zone “Include local directory path when uploading files” security setting. So, rather than sending the filename “C:\users\bill\desktop\temp\upload.txt”, instead it just send just “upload.txt”.This security improvement breaks, because the sites use JavaScript to attempt to parse the filename (e.g. to determine its extension). In many cases, the script will attempt to get the indexOf() the last REVERSE_SOLIDUS (\) character in the string, and since we now return only the leaf filename, those scripts will fail to parse the string and complain to the user. This will work when u test in local machine or intranet zone. It fails only in internet zone.
To fix this issues, use Path.GetFilename() or similar Path functions to parse path without relying on '\' character. you can also use FileUpload.Filename which return only filename.
|
|
|
|
|
Dear Friends.
I need a complete and free filemanager with login control and account file sizes limit for Linux server.
has anyone a file manager for me?
Mahdi Ghiasi
|
|
|
|
|
This is a programming forum. Not the right place for this question, really.
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.
|
|
|
|
|
In a plain HTML document, I have an image with align=left, the description for the image floating around the image as intended.
How can I start a new paragraph (for the next image) that always starts below that image? currently, if I make the display very wide, the next paragraph flows beside the image.
(I could limit display width, but I hope there's a better solution)
Personally, I love the idea that Raymond spends his nights posting bad regexs to mailing lists under the pseudonym of Jane Smith. He'd be like a super hero, only more nerdy and less useful. [Trevel] | FoldWithUs! | sighist | µLaunch - program launcher for server core and hyper-v server
|
|
|
|
|
I think that if you wrap your image tags in <div> blocks, they should automatically start on a new line.
Haven't tested it.
|
|
|
|
|
Im almost sure im mis-understanding you, but why dont you just add <br /> after the paragraph to break the following elements onto the next line?
Strive to be humble enough to take advice, and confident enough to do something about it.
|
|
|
|
|
Wrap both image(s) and text in a:
<div style="clear:both">
Marc
http://wordpressacademy.biz
|
|
|
|
|
how do i sort my gridview????
|
|
|
|
|
Using AllowSorting="True" .
Please search in google, you will get many answer for that.
Abhijit Jana | Codeproject MVP
Web Site : abhijitjana.net
Don't forget to click "Good Answer" on the post(s) that helped you.
|
|
|
|
|
Write following code in your grid sorting event..
DataTable m_DataTable = (DataTable)(Give your gridview data source here)
if (m_DataTable != null)
{
DataView m_DataView = new DataView(m_DataTable);
m_DataView.Sort = e.SortExpression + " " + ("ASC" or "DESC");
gridview.DataSource = m_DataView;
gridview.DataBind();
}
|
|
|
|
|
i have the following
DataTable dtBasel = Session["TaskTable"] as DataTable;
if (dtBasel != null)
{
dtBasel.DefaultView.Sort = e.SortExpression + "" + sGetSortDirection(e.SortExpression);
gvtest.DataSource = Session["TaskTable"];
gvtest.DataBind();
}
for the grdview_sorting event and
private string sGetSortDirection(string sColumn)
{
string sSortDirection = "ASC";
string sSortExpression = ViewState["SortExpression"] as string;
if (sSortExpression != null)
{
if (sSortExpression == sColumn)
{
string sLastDirection = ViewState["SortExpression"] as string;
if ((sLastDirection != null) && (sLastDirection == "ASC"))
{
sSortDirection = "DESC";
}
}
}
ViewState["SortExpression"] = sSortDirection;
ViewState["SortExpression"] = sColumn;
Bindgvtest();
return sSortDirection;
}
but it only sort 1 column, and i need it to sort any column i press ...
????
|
|
|
|
|
use SortExpression in every column of grid view that you want to sort.this will solve the problem...
|
|
|
|
|
Consider the ASP.NET forum for ASP.NET questions in future...
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.
|
|
|
|
|
hello, i have made awebsite and every thing is good enough for me , i open it up in IE and it looks brilliant, BUT when i open it up in FirFox , it seems slower and doesn't load correctly (as shown below) please help me to fix this easy and quick..
FireFox example : [^]
IE example : http://ryancmodding.zymichost.com/images/ie.jpg[^]
|
|
|
|
|
Well I am not able to view your images.
For supporting your sites on multiple browser you need to use proper CSS, and maintain the table/div properly. other wise you may get different look in different browser.
Thanks !
Abhijit Jana | Codeproject MVP
Web Site : abhijitjana.net
Don't forget to click "Good Answer" on the post(s) that helped you.
|
|
|
|