|
hi friends
I want to start doing mobile application can u teel we how to start.
and how many types of mobile programming are there.
Thank you
|
|
|
|
|
constantinejones wrote: how to start
Read documentation/book
|
|
|
|
|
Here is a post again with source code
Hi, I am using xml file to create a menu bar in my web page,
I want a horizontal menu bar display, but I get get verticle menudisaplay strating with root element. If I dont add root element, I get error in xml compilation. Can anyone please guide me how can I achieve horizontal display for different menu items?
xml code is:
<?xml version="1.0" encoding="utf-8" ?>
<MenuItem Text="Start" Value="H" Enabled="false" Url="">
<MenuItem Text="My Copyprint" Value="0" Enabled="false" Url="">
<MenuItem Text="Anmelden" Url="~/Register.aspx" Value="0"/>
<MenuItem Text="Kundenkonto ändern" Url="~/CustomerData.aspx" Value="0"/>
<MenuItem Text="Kontakt" Url="~/Contact.aspx" Value="0"/>
<MenuItem Text="Adressen" Url="~/Adresses.aspx" Value="0"/>
<MenuItem Text="AGBs" Url="~/Conditions.aspx" Value="0"/>
</MenuItem>
<MenuItem Text="Visitenkarten" Value="0" Enabled="false" Url="">
<MenuItem Text="Datei hochladen und bestellen" Url="~/ProductUpload.aspx" Value="2"/>
<MenuItem Text="Layout selber gestalten" Url="~/ProductLayout.aspx" Value="2"/>
</MenuItem>
<MenuItem Text="Postkarten" Value="1" Enabled="false" Url="">
<MenuItem Text="Datei hochladen und bestellen" Url="~/ProductUpload.aspx" Value="3"/>
<MenuItem Text="Layout selber gestalten" Url="~/ProductLayout.aspx" Value="3"/>
</MenuItem>
<MenuItem>
and ASP.Net source is
<asp:XmlDataSource runat="server" ID="XmlMenuSource" DataFile="menu.xml" />
<asp:Menu ID="MainMenu" runat="server" DynamicHorizontalOffset="5" Orientation="Horizontal" Height="26px"
Font-Names="Verdana" Font-Size="11pt" ForeColor="#404040" StaticSubMenuIndent="10px" BorderWidth="0px"
OnMenuItemClick="Menu1_MenuItemClick" BorderStyle="None" Font-Bold="True" StaticPopOutImageTextFormatString="Zeige {0}"
DataSourceID="XmlMenuSource" Width="160px" >
<StaticMenuItemStyle HorizontalPadding="5px" VerticalPadding="2px" BackColor="White" />
<DynamicHoverStyle BackColor="#E0E0E0" ForeColor="Red" Width="150px" Font-Size="10pt" />
<DynamicMenuStyle BackColor="White" Width="120px" />
<StaticSelectedStyle BackColor="White" ForeColor="Red" />
<DynamicMenuItemStyle HorizontalPadding="5px" VerticalPadding="2px" Font-Size="10pt" BackColor="White" Width="150px"/>
<StaticHoverStyle BackColor="#E0E0E0" ForeColor="Red" />
<StaticMenuStyle BackColor="Black" Height="22px" />
<DataBindings>
<asp:MenuItemBinding DataMember="MenuItem" Depth="0" TextField="Text" ValueField="Value" SelectableField="Enabled" />
<asp:MenuItemBinding DataMember="MenuItem" Depth="1" TextField="Text" ValueField="Value" NavigateUrlField="Url"/>
<asp:MenuItemBinding DataMember="MenuItem" Depth="2" TextField="Text" ValueField="Value" NavigateUrlField="Url"/>
</DataBindings>
</asp:Menu>
|
|
|
|
|
Hi, I am using xml file to create a menu bar in my web page,
I want a horizontal menu bar display, but I get get verticle menudisaplay strating with root element. If I dont add root element, I get error in xml compilation. Can anyone please guide me how can I achieve horizontal display for different menu items?
xml code is:
<br />
<?xml version="1.0" encoding="utf-8" ?><br />
<MenuItem Text="Start" Value="H" Enabled="false" Url=""><br />
<MenuItem Text="My Copyprint" Value="0" Enabled="false" Url=""><br />
<MenuItem Text="Anmelden" Url="~/Register.aspx" Value="0"/><br />
<MenuItem Text="Kundenkonto ändern" Url="~/CustomerData.aspx" Value="0"/><br />
<MenuItem Text="Kontakt" Url="~/Contact.aspx" Value="0"/><br />
<MenuItem Text="Adressen" Url="~/Adresses.aspx" Value="0"/><br />
<MenuItem Text="AGBs" Url="~/Conditions.aspx" Value="0"/><br />
</MenuItem><br />
<MenuItem Text="Visitenkarten" Value="0" Enabled="false" Url=""><br />
<MenuItem Text="Datei hochladen und bestellen" Url="~/ProductUpload.aspx" Value="2"/><br />
<MenuItem Text="Layout selber gestalten" Url="~/ProductLayout.aspx" Value="2"/><br />
</MenuItem><br />
<MenuItem Text="Postkarten" Value="1" Enabled="false" Url=""><br />
<MenuItem Text="Datei hochladen und bestellen" Url="~/ProductUpload.aspx" Value="3"/><br />
<MenuItem Text="Layout selber gestalten" Url="~/ProductLayout.aspx" Value="3"/><br />
</MenuItem><br />
</MenuItem><br />
and the Asp.net
<br />
<asp:XmlDataSource runat="server" ID="XmlMenuSource" DataFile="menu.xml" /><br />
<asp:Menu ID="MainMenu" runat="server" DynamicHorizontalOffset="5" Orientation="Horizontal" Height="26px"<br />
Font-Names="Verdana" Font-Size="11pt" ForeColor="#404040" StaticSubMenuIndent="10px" BorderWidth="0px" <br />
OnMenuItemClick="Menu1_MenuItemClick" BorderStyle="None" Font-Bold="True" StaticPopOutImageTextFormatString="Zeige {0}"<br />
DataSourceID="XmlMenuSource" Width="160px" > <br />
<StaticMenuItemStyle HorizontalPadding="5px" VerticalPadding="2px" BackColor="White" /><br />
<DynamicHoverStyle BackColor="#E0E0E0" ForeColor="Red" Width="150px" Font-Size="10pt" /><br />
<DynamicMenuStyle BackColor="White" Width="120px" /><br />
<StaticSelectedStyle BackColor="White" ForeColor="Red" /><br />
<DynamicMenuItemStyle HorizontalPadding="5px" VerticalPadding="2px" Font-Size="10pt" BackColor="White" Width="150px"/><br />
<StaticHoverStyle BackColor="#E0E0E0" ForeColor="Red" /><br />
<StaticMenuStyle BackColor="Black" Height="22px" /><br />
<DataBindings> <br />
<asp:MenuItemBinding DataMember="MenuItem" Depth="0" TextField="Text" ValueField="Value" SelectableField="Enabled" /><br />
<asp:MenuItemBinding DataMember="MenuItem" Depth="1" TextField="Text" ValueField="Value" NavigateUrlField="Url"/><br />
<asp:MenuItemBinding DataMember="MenuItem" Depth="2" TextField="Text" ValueField="Value" NavigateUrlField="Url"/><br />
</DataBindings><br />
</asp:Menu><br />
Thanks in advance.
|
|
|
|
|
Hello Friends
I hope all of you will be doing fine there,
i am working on a project where i need to use google earth features.
can any body tell me how can i integrate it in my website.
i am using ASP.net 2.0
do send me link to any project
take care
bye
Ahsan Ullah
|
|
|
|
|
i think the only info you can get is Google Earth KML which works with google earth client use XML as feed.
Nav.
|
|
|
|
|
GOOGLE it. First try linking GEARTH COM object.
|
|
|
|
|
IF you just want to display map data, then using GE is probably not the best way to do it - you'd need to spawn the objects, it would need to be installed on the client etc..etc...
Try using Google MAPS instead...
"Now I guess I'll sit back and watch people misinterpret what I just said......"
Christian Graus At The Soapbox
|
|
|
|
|
Can anyone help me sending articles r suggestions in implementing a simple chat as a part of the website with authorization of the user
|
|
|
|
|
you can use cute chat. A third party tool
http://cutesoft.net
|
|
|
|
|
any free engine ?? would really help anyways
|
|
|
|
|
Hi all,
I am using sqlserver 2000.I want to fetch Billdate from billmaster table I get Billdate in datetime format (2/2/2006 11:11:00AM) But i want only date part of it.
I mean I want to fetch only date and not time.
I hope you help me.
Regards,
Nagraj
|
|
|
|
|
when u write the select statement
write as
Nagraj Naik wrote: select convert(varchar,fieldname,101) from billmaster
select convert(varchar,fieldname,101) from billmaster
Vipin
|
|
|
|
|
Hi Vipin,
It's working.
It's nice to meet you.
Thanks for help.
Best Regards,
Nagraj
|
|
|
|
|
Hi folks. This is selvaraj.I have a Datagrid ItemTemplate with DropDownList and also have an another ItemTemplates called HtmlInputText control.Initially the HtmlInputText control is disabled=true in all DataGrid rows.My requirement is when I going to be choosed the DropDownList value 5,that time only i need to disabled=false the HtmlInputText control. If any know about my issues please give some idea or code to me..
Thanks in advance
Selvaraj S.Kaliyappan.
|
|
|
|
|
have you tried the javascript for this. You can call javascript function on change of the dropdowlist and there in that function you can check for the dropdownlist value and do the oprations.
Best Regards,
Apurva Kaushal
|
|
|
|
|
Hi,
Have an application that can be accessed through a portal. Now the application is to be customised for certain keywords that would be sent encased in the URL directed to this application.
Am confused as how to read this URL and extract the keyword in the application.
Any help?!
|
|
|
|
|
Hi,
Request.QueryString[keyword] will help you to reading the keywords.
|
|
|
|
|
psamy wrote: Request.QueryString[keyword]
Is this client side or server code?
|
|
|
|
|
server side code.
Best Regards,
Apurva Kaushal
|
|
|
|
|
Alrite I still am confused!
i need to customize my application to parse the URL for a specific keyword.
The portal would redirect the user to my application, now how would I use the Request.QueryString property here!?
|
|
|
|
|
suppose in url you the ID=100 appended in it.
What you need to do is if you want to get the value is:
This you can put in the page load event of the web page.
string strID = Request.QueryString["ID"].ToString();
Best Regards,
Apurva Kaushal
|
|
|
|
|
Hi all,
i've a page with some ImageButtons and by clicking on it a popup is opened via javascript with the zoomed image.
My prob is:
is there a way to disable imagebutton postback in order to execute only the clientside script when i click on the imagebutton, without reload the main page ?
sry for my english.
Tnx All.
Nuaz
|
|
|
|
|
|
Hi,
use this code,
imgbtn1.Attributes.Add("onclick","zoomImage();return;");
return; doesn't allow the postback.
|
|
|
|