all groups > asp.net > august 2006 > threads for saturday august 19
Filter by Day: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
image button click opens a new windows .. how?
Posted by Aussie Rules at 8/19/2006 9:38:56 PM
Hi,
I have an image button on my page, and I want to have a popup window open up
when the user clicks the imagebutton, and if possible set the window
configuration(ie no tool bar, etc) like javascript can.
On the click event I have page.response.redirect ("page.aspx") but this
simply ope... more >>
Error in uploading file
Posted by wenqiang7 NO[at]SPAM gmail.com at 8/19/2006 8:56:51 PM
I am encountering a very strang problem with file uploading in my
ASP.Net page.
When we try to upload certain file, we'll get an error msg of "Cannot
find server or DNS Error".
We are running on Win2003, IIS, ASP.Net 1.1.
The page works fine if running from localhost. It only has problem ... more >>
validation controls
Posted by rodchar at 8/19/2006 7:31:02 PM
hey all,
can the validation controls popup an alert window if triggered?
thanks,
rodchar... more >>
Drag and drop (like webparts)?
Posted by Dave at 8/19/2006 7:16:02 PM
I'm interested in how the drag and drop works in 2.0 webparts (specifically
showing the dragged object as transparent so the user knows what is being
dragged).
Specifically, I'd like to drag an item from one listbox to another listbox
or drag an html element to allow a user to re-order a li... more >>
Load CustomControl at runtime
Posted by Gabriel at 8/19/2006 7:09:28 PM
Hello,
I create a user control, no problem at design time.
But when I try to load at runtime, no error but I don't see it.
The code is :
protected void Page_Load(object sender, EventArgs e)
{
if (IsPostBack == false)
{
_myUserControl = new myUserCo... more >>
wrong page of data on select of a GridView row
Posted by Dabbler at 8/19/2006 6:03:01 PM
I have a GridView attached to a SqlDataSource control. In the codebehind I
modify the SqlDataSource based on users choice of search column and search
value which I use to generate the select statement for the SqlDataSource. The
problem is the select I create from the users entries is not saved... more >>
TextBox.Style.Add
Posted by Tina at 8/19/2006 5:57:47 PM
The following works great....
TextBox10.Style.Add(HtmlTextWriterStyle.TextAlign, "center");
Now I know that HtmlTextWriterStyle is an enumerations and that TextAlign is
int 36.
I am in a situation where I am getting passed the values of the enumeration
but if I say TextBox10.Style.Add(Str... more >>
Remote web service
Posted by doc. Zenobiusz Furman at 8/19/2006 3:12:26 PM
Hi!
How to call a method of a remote web service from another web service
(local)? Any help?
--
M.... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Hide HTML section from code behind
Posted by Gabriel at 8/19/2006 2:47:32 PM
Hi,
I have a HTML like this
<table>
<tr>
<td>...</td>
<td>...</td>
</tr>
<tr id="toHide">
<td>...</td>
<td>...</td>
</tr>
</table>
From the code behind (MyPage.aspx.cs) hide the "toHide" section how can I do
that ?
Thanks,
... more >>
Where is the Assembly in Visual Web Developer 2005 (Express Edition)
Posted by NW Technicals at 8/19/2006 11:11:25 AM
Hi I have built an Asp.net based applicaiton using webdeveloper and wanted
to run the FxCOP to do static analysis unable to find its assembly.
Any help would be greatly appreciated.
... more >>
The XML page cannot be displayed
Posted by Michael X at 8/19/2006 11:06:02 AM
I have .net 2.0, IIS 5.1 and Vistual Studio 2005 installed. The asp.net
project i created is running fine under VS 2005, but if I browse through IE
directly, or even browse a simple aspx page, it returns:
-----------------------------------------------------------------------------------------... more >>
Treeview in asp.net 2.0
Posted by tmldias NO[at]SPAM gmail.com at 8/19/2006 9:38:50 AM
Hi all,
I've already "lost" too many time and no success...
I want to remove the default postback when the user presses a node in
the tree. I want to navigate and selecte nodes in the tree just
client-side without postbacks to the server.
Thanks.
... more >>
What's wrong in this code ??
Posted by pamelafluente NO[at]SPAM libero.it at 8/19/2006 9:36:58 AM
I am trying to pass a javascript variable to ASP.
It almost works, except for the postback part. Infact if one clicks on
the div and on the button it can be seen that the variable passes
through. Can anyone help to do the postback?
Here is my complete code:
<%@ Page Language="VB" AutoEven... more >>
Change DataGrid GridLine Color?
Posted by Arpan at 8/19/2006 5:04:50 AM
How do I change the color of the GridLines in a DataGrid? I don't find
any property to change the GridLines color in a DataGrid. I tried using
HeaderStyle-BorderColor as well as ItemStyle-BorderColor but neither of
them color the GridLines. BorderColor just changes the color of the
outer 4 borde... more >>
Multiple Procedures in ASP.NET
Posted by Charles at 8/19/2006 12:12:50 AM
I have a Web application in VB.Net that has four seperate procdedures
which need to run in order.
Try
cnDownload.Open()
Dim cmdDeleteDownload As New
SqlCommand("ProcDeleteDownload", cnDownload)
cmdDeleteDownload.CommandType = CommandType.StoredProced... more >>
How to get rid of GridView border magic?
Posted by progdis NO[at]SPAM gmail.com at 8/19/2006 12:09:17 AM
I want to apply css styles on a GridView, but there is some border
magic in it, which applies border styles on the table.
By default it sets an attribute border="0" on the table. If I set
border width 1px, it adds attribute style="border-style: solid;
border-width: 1px;". I wonder, is it possi... more >>
|